body {
    font-family: 'Lato', sans-serif;
    background-color: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.login-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.login-container h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}
.form-control {
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    padding: 0.5rem 0;
    padding-left: 2.5rem;
    box-shadow: none;
}
.form-control:focus {
    border-bottom-color: #57b846;
    box-shadow: none;
}
.form-control-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}
.btn-login {
    border-radius: 50px;
    padding: 0.75rem;
    background-color: #57b846;
    color: white;
    font-weight: bold;
    width: 100%;
    box-shadow: 0 4px 8px rgba(87, 184, 70, 0.2);
}
.btn-login:hover {
    background-color: #45a63c;
}
.login-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}
.login-links a {
    color: #57b846;
    text-decoration: none;
}
.login-links a:hover {
    text-decoration: underline;
}