    .auth-container {
        min-height: calc(100vh - 200px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -1.5rem -1rem;
        padding: 2rem;
    }

    .auth-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        width: 100%;
        max-width: 450px;
        padding: 2.5rem;
        animation: slideUp 0.5s ease;
    }

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

    .auth-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .auth-header h1 {
        color: #333;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .auth-header .subtitle {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .error-message {
        background: #fef2f2;
        border: 1px solid #fee2e2;
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1.5rem;
        color: #dc2626;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .error-message i {
        font-size: 1.2rem;
    }

    .success-message {
        background: #f0fdf4;
        border: 1px solid #dcfce7;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        color: #16a34a;
        text-align: center;
    }

    .success-message i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #4ade80;
    }

    .success-message h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #166534;
    }

    .success-message p {
        font-size: 0.95rem;
        color: #16a34a;
        margin-bottom: 1rem;
    }

    .info-box {
        background: #eff6ff;
        border: 1px solid #dbeafe;
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1.5rem;
        color: #1e40af;
        font-size: 0.95rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .info-box i {
        font-size: 1.2rem;
        color: #3b82f6;
        margin-top: 0.1rem;
    }

    .info-box-content {
        flex: 1;
    }

    .info-box-title {
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #1e3a8a;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #374151;
        font-weight: 500;
        font-size: 0.95rem;
    }

    .form-group input {
        width: 100%;
        padding: 0.875rem 1rem 0.875rem 2.5rem;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f9fafb;
        background-repeat: no-repeat;
        background-position: 1rem center;
        background-size: 1.2rem;
    }

    .form-group input:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }

    .form-group input::placeholder {
        color: #9ca3af;
    }

    .form-group input.error {
        border-color: #dc2626;
        background: #fef2f2;
    }

    .form-group .email-input {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
    }

    .field-errors {
        margin-top: 0.5rem;
        padding: 0.5rem;
        background: #fef2f2;
        border-radius: 8px;
        border-left: 3px solid #dc2626;
    }

    .field-errors ul {
        margin: 0;
        padding-left: 1.5rem;
        color: #dc2626;
        font-size: 0.85rem;
    }

    .field-errors li {
        margin-bottom: 0.25rem;
    }

    .btn-reset {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-reset:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }

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

    .btn-reset:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    .btn-back {
        width: 100%;
        padding: 0.875rem;
        background: white;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        color: #4b5563;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
    }

    .btn-back:hover {
        background: #f9fafb;
        border-color: #d1d5db;
        color: #1f2937;
    }

    .links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .links a {
        color: #667eea;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .links a:hover {
        color: #764ba2;
        text-decoration: underline;
    }

    .security-note {
        margin-top: 1.5rem;
        padding: 1rem;
        background: #f3f4f6;
        border-radius: 12px;
        font-size: 0.85rem;
        color: #6b7280;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .security-note i {
        color: #9ca3af;
        font-size: 1.2rem;
    }

    .countdown-timer {
        font-weight: 600;
        color: #667eea;
    }
