/* ========================================
   Trade Crypto - Dark Theme Auth Styles
   ======================================== */

:root {
    --bg-primary: #0a0d1f;
    --bg-secondary: #1a1d2e;
    --bg-card: rgba(26, 29, 46, 0.85);
    --border-color: rgba(255, 68, 68, 0.15);
    --border-subtle: rgba(59, 130, 246, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b4b9c9;
    --text-muted: #6b7280;
    --accent-primary: #ef4444;
    --accent-hover: #dc2626;
    --accent-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --grid-line: rgba(59, 130, 246, 0.08);
    --success: #10b981;
    --danger: #ef4444;
    --input-bg: rgba(15, 17, 33, 0.6);
    --input-border: rgba(107, 114, 128, 0.2);
    --input-focus: rgba(239, 68, 68, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(239, 68, 68, 0.2);
}

/* Body & Background */
body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.auth-page-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0d1f 0%, #141829 100%);
}

/* Grid Background Pattern */
.auth-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Floating Shapes Animation */
.auth-bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(239, 68, 68, 0.2);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(239, 68, 68, 0.15);
    bottom: -200px;
    right: -200px;
    animation-delay: 8s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: rgba(239, 68, 68, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -60px) scale(1.15); }
    50% { transform: translate(-40px, 60px) scale(0.85); }
    75% { transform: translate(50px, 40px) scale(1.08); }
}

/* Content Container */
.auth-page-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Auth Card */
.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0.8;
}

.auth-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.25);
}

.auth-card .card-body {
    padding: 2.5rem;
}

/* Logo */
.auth-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.auth-logo-img {
    height: 120px;
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
}

/* Typography */
.auth-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Form Elements */
.auth-form-wrapper {
    margin-top: 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.forgot-link {
    font-size: 0.875rem;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.forgot-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Input Groups */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute !important;
    left: 1.25rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #6b7280 !important;
    font-size: 1.1rem !important;
    z-index: 3 !important;
    pointer-events: none !important;
}


.form-control {
    width: 100% !important;
    padding: 1rem 3.5rem 1rem 3.5rem !important;
    font-size: 0.95rem !important;
    background: rgba(15, 17, 33, 0.6) !important;
    border: 1px solid rgba(107, 114, 128, 0.2) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    outline: none;
    background: rgba(15, 17, 33, 0.8);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--input-focus);
}

/* Password Toggle */
.password-toggle {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: #6b7280 !important;
    font-size: 1.25rem !important;
    cursor: pointer !important;
    z-index: 3 !important;
}

.password-toggle:hover {
    color: var(--accent-primary);
}

/* Submit Button */
.btn-submit {
    position: relative;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.btn-submit:hover::before {
    left: 100%;
}

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

.btn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Footer Text */
.auth-footer-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.auth-link {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger);
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .auth-logo-img {
        height: 100px;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .auth-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .form-control {
        padding: 0.75rem 1rem 0.75rem 2.75rem;
    }
    
    .input-icon {
        left: 0.875rem;
        font-size: 1.1rem;
    }
}

/* Loading State */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading .btn-text::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Subtle Glow Effects */
.auth-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.auth-card:hover::after {
    opacity: 1;
}



/* Form Control - NO ICON PADDING */
.form-control {
    width: 100% !important;
    padding: 0.875rem 1rem !important; /* Equal padding on all sides */
    font-size: 0.95rem !important;
    background: rgba(15, 17, 33, 0.6) !important;
    border: 1px solid rgba(107, 114, 128, 0.2) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.form-control::placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

.form-control:focus {
    outline: none !important;
    background: rgba(15, 17, 33, 0.8) !important;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px var(--input-focus) !important;
}

/* Remove icon padding for select */
select.form-control {
    padding: 0.875rem 2.5rem 0.875rem 1rem !important;
    cursor: pointer;
}

/* Password Requirements - HIDDEN BY DEFAULT */
.password-requirements {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0 !important;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: none; /* Hidden by default */
}

.password-requirements li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.password-requirements li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.password-requirements li.valid {
    color: var(--success);
}

.password-requirements li.valid::before {
    content: '✓';
    color: var(--success);
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1.25rem !important;
}

.form-group.mb-2 {
    margin-bottom: 0.5rem !important;
}

/* Fix Row Gutters */
.row.gx-3 {
    --bs-gutter-x: 1rem;
}

.row.gx-3 > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* Ensure proper column behavior */
.col-md-6 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

/* Select Dropdown */
.form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

select.form-control option {
    background: #1a1d2e;
    color: #ffffff;
    padding: 0.5rem;
}

/* Field Status */
.field-status {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    font-weight: 500;
    min-height: 0;
}

.field-status.success {
    color: var(--success);
}

.field-status.error {
    color: var(--danger);
}

.field-status.hide {
    display: none !important;
}

.confirm_err {
    font-size: 0.75rem !important;
    margin-top: 0.25rem !important;
    font-weight: 500 !important;
    color: var(--danger) !important;
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .row.gx-3 > * {
        margin-bottom: 0;
    }
    
    .password-requirements {
        margin-bottom: 1rem !important;
    }
}


/* ========================================
   SUCCESS PAGE - MODERN DESIGN
   ======================================== */

.auth-page-wrapper-modern {
    min-height: 100vh;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.auth-background-modern {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    inset: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: rgba(239, 68, 68, 0.3);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.3);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Content */
.success-page-content {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
}

/* Success Checkmark Animation */
.success-animation-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.success-checkmark.animate {
    opacity: 1;
    transform: scale(1);
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.icon-line {
    height: 5px;
    background-color: var(--success);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.line-tip {
    top: 54px;
    left: 25px;
    width: 30px;
    transform: rotate(45deg);
    animation: checkmark-tip 0.75s 0.3s ease-out forwards;
}

.line-long {
    top: 50px;
    right: 18px;
    width: 60px;
    transform: rotate(-45deg);
    animation: checkmark-long 0.75s 0.5s ease-out forwards;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.3);
}

.icon-fix {
    top: 10px;
    width: 10px;
    left: 32px;
    z-index: 1;
    height: 100px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--bg-primary);
}

@keyframes checkmark-tip {
    0% { width: 0; left: 5px; top: 25px; }
    100% { width: 30px; left: 25px; top: 54px; }
}

@keyframes checkmark-long {
    0% { width: 0; right: 50px; top: 55px; }
    100% { width: 60px; right: 18px; top: 50px; }
}

/* Main Card */
.success-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.6s ease-out;
}

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

/* Logo */
.success-logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.success-logo {
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.3));
    transition: transform 0.3s ease;
}

.logo-link:hover .success-logo {
    transform: scale(1.05);
}

/* Header */
.success-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 30px;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.success-badge i {
    font-size: 1.25rem;
}

.success-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.success-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.6;
}

/* Credentials Box */
.credentials-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.credentials-header i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.credentials-header h5 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.credentials-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.credentials-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.credential-item {
}

.credential-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.credential-label i {
    font-size: 1rem;
    color: var(--accent-primary);
}

.credential-value-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.credential-value {
    flex: 1;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.btn-copy-credential {
    padding: 0.5rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: var(--accent-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-copy-credential:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: scale(1.05);
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    color: var(--warning);
    font-size: 0.875rem;
}

.security-notice i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Email Confirmation */
.email-confirmation-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    margin-bottom: 2rem;
}

.email-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--info);
    flex-shrink: 0;
}

.email-content h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.email-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Action Buttons */
.success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-login-modern,
.btn-home-modern {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login-modern {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    border: none;
}

.btn-login-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    color: #ffffff;
}

.btn-home-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-home-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--text-primary);
}

/* Help Section */
.help-section {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.help-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.help-link {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* Footer Text */
.success-footer-text {
    text-align: center;
    margin-top: 2rem;
}

.success-footer-text p {
    color: var(--text-secondary);
    margin: 0;
}

.footer-link {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-left: 4px solid var(--success);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.copy-toast.show {
    transform: translateX(0);
}

.copy-toast i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 767px) {
    .success-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .success-title {
        font-size: 1.75rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .credentials-box {
        padding: 1.5rem;
    }
    
    .success-actions {
        grid-template-columns: 1fr;
    }
    
    .email-confirmation-box {
        flex-direction: column;
        text-align: center;
    }
    
    .credential-value {
        font-size: 1rem;
    }
}
