     @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap');
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: #f9fafb;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


/* Form Container */
.form-section {
    padding: 3rem 1rem;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    max-width: 28rem;
    width: 100%;
    margin: 0 auto;
}

.form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

/* Form Elements */
.form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Label Variations */
.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.label-link {
    font-size: 0.875rem;
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
}

.label-link:hover {
    color: #6d28d9;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary:hover:not(:disabled) {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Social Login Divider */
.divider {
    margin: 1.5rem 0;
    position: relative;
}

.divider-line {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.divider-line::before {
    content: '';
    flex: 1;
    border-top: 1px solid #d1d5db;
}

.divider-text {
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
}

.divider-text span {
    padding: 0 0.5rem;
    background: white;
    color: #6b7280;
}

/* Social Buttons */
.social-buttons {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-social:hover {
    background-color: #f9fafb;
}

.btn-social svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.btn-social span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Footer Link */
.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-footer p {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-footer a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    color: #6d28d9;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 2rem;
    text-align: center;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.trust-item {
    display: flex;
    align-items: center;
}

.trust-item svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

/* Messages */
.message {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.message.hidden {
    display: none;
}

/* Loading State */
.loading {
    display: none;
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.loading.show {
    display: block;
}

/* Responsive */
@media (max-width: 640px) {
    nav .nav-text {
        display: none;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 0.75rem;
    }
}