body {
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
font-family: sans-serif;
}
.login-container {
background: white;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
padding: 30px;
box-sizing: border-box;
}
.login-header {
text-align: center;
margin-bottom: 25px;
}
.login-header a {
display: block;
text-decoration: none;
}
.login-header img {
width: 80px;
margin-bottom: 15px;
}
.login-header h1 {
color: #0A3470;
font-size: 1.8rem;
margin: 0;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: 600;
color: #333;
}
.input-wrapper {
display: flex;
align-items: center;
border: 1px solid #ddd;
border-radius: 5px;
padding: 8px 12px;
transition: border-color 0.3s;
}
.input-wrapper:focus-within {
border-color: #0A3470;
}
.input-wrapper i {
color: #0A3470;
margin-right: 10px;
}
.input-wrapper input {
border: none;
width: 100%;
outline: none;
font-size: 1rem;
padding: 0;
background: transparent;
} .input-wrapper .toggle-password {
color: #777;
cursor: pointer;
margin-left: 8px;
margin-right: 0;
}
.login-button {
width: 100%;
padding: 12px;
background-color: #FF6700;
color: white;
border: none;
border-radius: 5px;
font-size: 1.1rem;
cursor: pointer;
transition: background-color 0.3s;
margin-top: 10px;
}
.login-button:hover {
background-color: #e55a00;
}
.login-message {
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
font-size: 0.95rem;
text-align: center;
}
.login-error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.login-success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.footer-login {
text-align: center;
margin-top: 20px;
font-size: 0.8rem;
color: #777;
}
.form-options {
margin-top: 10px;
margin-bottom: 10px;
font-size: 0.9rem;
}