* {
    font-family: 'DM Sans', sans-serif;
}

body {
    background: #E0E9E7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.6s ease-out forwards;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    background: #016D6D;
    padding: 40px 30px;
    text-align: center;
    color: #FFFFFF;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1;
}

.brand-name {
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.login-body {
    padding: 40px 30px;
}

.form-label {
    color: #000000;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    border: 2px solid #E0E9E7;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #016D6D;
    box-shadow: 0 0 0 0.2rem rgba(1, 109, 109, 0.15);
}

.btn-login {
    background: #016D6D;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #0DB47A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 180, 122, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.form-check-label {
    color: #000000;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #016D6D;
    border-color: #016D6D;
}

.forgot-password {
    color: #016D6D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #0DB47A;
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #E0E9E7;
}

.divider span {
    background: #FFFFFF;
    padding: 0 15px;
    color: #000000;
    font-size: 14px;
    position: relative;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    color: #000000;
    font-size: 14px;
}

.signup-link a {
    color: #016D6D;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    color: #0DB47A;
}
