76 lines
1.2 KiB
CSS
76 lines
1.2 KiB
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f4f7f6;
|
|
background-image: linear-gradient(to bottom, #f4f7f6, #dff1eb);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.login-container {
|
|
max-width: 480px;
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
.login-card {
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
padding: 40px;
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.login-card h1 {
|
|
font-weight: 700;
|
|
color: #333;
|
|
}
|
|
|
|
.form-control {
|
|
border-radius: 8px;
|
|
padding: 1.25rem 1rem;
|
|
}
|
|
|
|
.form-floating > label {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #4a90e2;
|
|
border-color: #4a90e2;
|
|
border-radius: 8px;
|
|
padding: 0.75rem;
|
|
font-weight: 500;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #357ABD;
|
|
border-color: #357ABD;
|
|
}
|
|
|
|
.forgot-password {
|
|
font-size: 0.9rem;
|
|
color: #4a90e2;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.forgot-password:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.sign-up-text {
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.sign-up-text a {
|
|
color: #4a90e2;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sign-up-text a:hover {
|
|
text-decoration: underline;
|
|
}
|