body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.auth-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 122, 51, 0.1);
    padding: 30px;
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.auth-title.text-theme {
    color: #007a33;
}

.auth-subtitle {
    font-size: 14px;
    color: #495057;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.forgot-link {
    font-size: 0.875rem;
    color: #007a33;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
    color: #005f26;
}

.btn-theme {
    background-color: #007a33;
    border-color: #007a33;
    color: white;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
}

.btn-theme:hover {
    background-color: #005f26;
    border-color: #005f26;
}

.form-group .toggle-icon {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    right: 1rem;
    color: #6c757d;
    cursor: pointer;
    z-index: 2;
    font-size: 1rem;
}
