body {
    background: linear-gradient(135deg, #f6fff8 0%, #e9f5ec 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", Arial, sans-serif;
}

.auth-container {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(8, 104, 29, 0.08);
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.auth-container img {
    width: 70px;
    margin-bottom: 1rem;
}

.auth-container h2 {
    color: var(--primary, #08681d);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.auth-container form {
    display: flex;
    flex-direction: column;
}

.auth-container .form-group {
    text-align: left;
    margin-bottom: 1rem;
}

.auth-container label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.3rem;
    display: block;
}

.auth-container input[type="email"],
.auth-container input[type="password"] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #cbe3d4;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafb;
    transition: border 0.2s;
}

.auth-container input:focus {
    border: 1.5px solid var(--primary, #08681d);
    outline: none;
}

.auth-container .btn {
    background: linear-gradient(135deg, var(--primary, #08681d), #0b8a2f);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.auth-container .btn:hover {
    background: linear-gradient(135deg, #0b8a2f, var(--primary, #08681d));
}

.auth-container .auth-link {
    margin-top: 1.2rem;
    font-size: 0.97rem;
    color: #555;
}

.auth-container .auth-link a {
    color: var(--primary, #08681d);
    text-decoration: none;
    font-weight: 500;
}

.auth-container .auth-link a:hover {
    text-decoration: underline;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #28a745;
}
