* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #050816;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Animated Particle Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    pointer-events: none;
    will-change: transform;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00d4ff, transparent),
        radial-gradient(2px 2px at 60px 70px, #00ffff, transparent),
        radial-gradient(1px 1px at 50px 50px, #00d4ff, transparent),
        radial-gradient(1px 1px at 130px 80px, #ffffff, transparent),
        radial-gradient(2px 2px at 90px 10px, #00ffff, transparent);
    background-size: 200px 200px;
    animation: stars 15s linear infinite; /* Shortened from 20s */
    opacity: 0.4;
}

@keyframes stars {
    from { transform: translateY(0px) translateZ(0); }
    to { transform: translateY(-200px) translateZ(0); }
}

/* Hexagonal Grid */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(150deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 60px 60px;
    z-index: 0;
    pointer-events: none;
    will-change: opacity;
    animation: gridPulse 3s ease-in-out infinite; /* Shortened from 4s */
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Floating Crypto Symbols */
.crypto-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border: 2px solid;
    animation: float 8s infinite ease-in-out; /* Shortened from 10s */
    will-change: transform, opacity;
    filter: blur(0.3px); /* Reduced blur */
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    border-color: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); /* Reduced shadow */
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    border-color: rgba(0, 255, 255, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 2s;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2); /* Reduced */
}

/* Removed .shape:nth-child(3) to cut one animation */

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) translateZ(0);
        opacity: 0.5;
    }
    50% { 
        transform: translate(30px, 30px) rotate(180deg) translateZ(0); /* Simplified keyframes */
        opacity: 0.6;
    }
}

/* Removed shape::before pulse to reduce layers */

/* Removed bg-animation::after dataStream to cut one animation */

/* Animated Geometric Shapes - Top Right */
.top-right-shapes {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 150px;
    height: 150px;
    z-index: 100;
    pointer-events: none;
}

.animated-shape {
    position: absolute;
    border: 2px solid;
    animation: shapeFloat 6s infinite ease-in-out; /* Shortened from 8s */
    will-change: transform, opacity;
}

.shape-diamond {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    border-color: rgba(138, 43, 226, 0.6);
    transform: rotate(25deg);
    animation: diamondRotate 10s infinite ease-in-out; /* Shortened from 12s */
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4); /* Reduced */
    will-change: transform;
}

@keyframes diamondRotate {
    0%, 100% { 
        transform: rotate(25deg) scale(1) translateZ(0);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(65deg) scale(1) translateZ(0); /* Simplified */
        opacity: 0.6;
    }
}

.shape-circle {
    width: 120px;
    height: 120px;
    top: 15px;
    right: -10px;
    border-color: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: circleFloat 8s infinite ease-in-out; /* Shortened from 10s */
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); /* Reduced */
    will-change: transform;
}

@keyframes circleFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1) translateZ(0);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-10px, 10px) scale(1.05) translateZ(0); /* Simplified */
        opacity: 0.9;
    }
}

.shape-line1 {
    width: 80px;
    height: 2px;
    top: 80px;
    left: 10px;
    border: none;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    animation: line1Move 5s infinite ease-in-out; /* Shortened from 6s */
    transform: rotate(-35deg);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); /* Reduced */
    will-change: transform;
}

@keyframes line1Move {
    0%, 100% { 
        transform: rotate(-35deg) scaleX(1) translateZ(0);
        opacity: 0.8;
    }
    50% { 
        transform: rotate(-25deg) scaleX(1.2) translateZ(0);
        opacity: 1;
    }
}

.shape-line2 {
    width: 60px;
    height: 2px;
    bottom: 20px;
    right: 15px;
    border: none;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    animation: line2Move 6s infinite ease-in-out; /* Shortened from 7s */
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); /* Reduced */
    will-change: transform;
}

@keyframes line2Move {
    0%, 100% { 
        transform: rotate(45deg) scaleX(1) translateZ(0);
        opacity: 0.7;
    }
    50% { 
        transform: rotate(55deg) scaleX(1.3) translateZ(0);
        opacity: 1;
    }
}

.shape-dots {
    position: absolute;
    bottom: 30px;
    left: 25px;
}

.dot {
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.8);
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
    animation: dotPulse 1.5s infinite ease-in-out; /* Shortened from 2s */
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6); /* Reduced */
    will-change: transform, opacity;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1) translateZ(0);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5) translateZ(0);
    }
}

@keyframes shapeFloat {
    0%, 100% { 
        filter: blur(0px);
    }
    50% { 
        filter: blur(0.5px); /* Reduced */
    }
}

.auth-wrapper {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.auth-container {
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.15), /* Reduced */
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Animated Border Glow */
.auth-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        rgba(0, 212, 255, 0.5),
        rgba(138, 43, 226, 0.5),
        rgba(0, 255, 255, 0.5),
        rgba(0, 212, 255, 0.5)
    );
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 4s ease infinite; /* Shortened from 6s */
    opacity: 0.5;
    will-change: background-position;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Simplified scanline - reduced frequency */
.auth-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 212, 255, 0.05), /* Reduced opacity */
        transparent
    );
    animation: scanline 4s linear infinite; /* Shortened from 3s, lower opacity */
    will-change: left;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Rest of your CSS unchanged (brand, form, etc.) - they are lightweight */
.brand {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    animation: glowPulse 2s ease-in-out infinite; /* Shortened from 3s */
}

@keyframes glowPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
}

.tagline {
    font-size: 13px;
    color: rgba(0, 212, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 32px;
}

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

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 212, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    transition: all 0.3s ease; /* Simplified cubic-bezier */
    font-family: 'Space Grotesk', sans-serif;
}

input::placeholder {
    color: rgba(0, 212, 255, 0.3);
}

input:focus {
    outline: none;
    background: rgba(0, 30, 60, 0.8);
    border-color: #00d4ff;
    box-shadow: 
        0 0 0 3px rgba(0, 212, 255, 0.1),
        0 0 15px rgba(0, 212, 255, 0.2); /* Reduced shadow */
    transform: translateY(-1px);
}

input.error {
    border-color: rgba(255, 0, 100, 0.5);
}

input.success {
    border-color: rgba(0, 255, 157, 0.5);
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    opacity: 0.6;
    transition: all 0.3s ease; /* Simplified */
    z-index: 10;
    background: transparent;
    border: none;
    padding: 4px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.toggle-password:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.8));
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    font-size: 13px;
}

.remember-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00d4ff;
}

.remember-wrapper label {
    margin: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    text-transform: none;
}

.forgot-password {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease; /* Simplified */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.forgot-password::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s;
    box-shadow: 0 0 10px #00ffff;
}

.forgot-password:hover::after {
    width: 100%;
}

.forgot-password:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 50%, #8a2be2 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease; /* Simplified */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); /* Reduced */
    will-change: transform, box-shadow;
}

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

.btn-primary:hover {
    background-position: 100% 0%;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.6), /* Reduced */
        0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    border-color: #00ffff;
}

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

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

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-primary .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin: 0 auto;
}

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

.btn-primary.loading .btn-text {
    display: none;
}

.btn-primary.loading .spinner {
    display: block;
}

.divider {
    margin: 32px 0;
    text-align: center;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 212, 255, 0.5) 50%,
        transparent
    );
}

.divider span {
    position: relative;
    padding: 0 16px;
    background: rgba(5, 8, 22, 0.95);
    font-size: 12px;
    color: rgba(0, 212, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.link-text {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.link-text a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease; /* Simplified */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-text a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    display: none;
    border: 1px solid;
    animation: slideIn 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert.error {
    background: rgba(255, 0, 100, 0.1);
    border-color: rgba(255, 0, 100, 0.5);
    color: #ff6b9d;
    box-shadow: 0 0 15px rgba(255, 0, 100, 0.2); /* Reduced */
}

.alert.success {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.5);
    color: #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2); /* Reduced */
}

.security-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(0, 212, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-icon {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8), /* Reduced */
        0 0 20px rgba(0, 212, 255, 0.4); /* Reduced */
    animation: securityPulse 1.5s ease-in-out infinite; /* Shortened from 2s */
    will-change: transform, opacity, box-shadow;
}

@keyframes securityPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1) translateZ(0);
        box-shadow: 
            0 0 10px rgba(0, 212, 255, 0.8),
            0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.3) translateZ(0);
        box-shadow: 
            0 0 15px rgba(0, 212, 255, 1), /* Reduced */
            0 0 30px rgba(0, 212, 255, 0.6); /* Reduced */
    }
}

.password-requirements {
    margin-top: 12px;
    padding: 12px;
    background: rgba(0, 20, 40, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.requirement {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.requirement:last-child {
    margin-bottom: 0;
}

.requirement.met {
    color: #00ff9d;
}

.requirement-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.requirement.met .requirement-icon {
    border-color: #00ff9d;
    color: #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.terms-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 13px;
}

.terms-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #00d4ff;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-wrapper label {
    margin: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    line-height: 1.5;
    text-transform: none;
}

.terms-wrapper a {
    color: #00ffff;
    text-decoration: none;
}

.terms-wrapper a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Mobile Optimizations: Pause heavy animations */
@media (max-width: 768px) {
    .top-right-shapes {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }

    .shape-diamond {
        width: 70px;
        height: 70px;
    }

    .shape-circle {
        width: 80px;
        height: 80px;
    }

    .shape-line1,
    .shape-line2 {
        width: 50px;
    }

    /* Pause complex floats on mobile */
    .crypto-shapes .shape,
    .animated-shape {
        animation-play-state: paused; /* Or reduce: animation-duration: 15s; */
    }

    .bg-animation::before,
    .grid-overlay {
        animation-duration: 30s; /* Slow down background */
    }
}

@media (max-width: 520px) {
    body {
        padding: 30px 20px;
    }

    .top-right-shapes {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
    }

    .shape-diamond {
        width: 60px;
        height: 60px;
    }

    .shape-circle {
        width: 65px;
        height: 65px;
    }

    .auth-container {
        padding: 40px 28px;
    }

    .logo {
        font-size: 30px;
    }

    .title {
        font-size: 20px;
    }

    .form-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .security-footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .shape {
        display: none; /* Hide shapes on small screens */
    }

    /* Further pause */
    .auth-container::before,
    .auth-container::after {
        animation-play-state: paused;
    }
}

@media (max-width: 380px) {
    .auth-container {
        padding: 32px 20px;
    }
}


/* ==================== MODAL STYLES ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .modal-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .modal-body {
    padding: 24px;
  }
  
  .modal-body p {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  .form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .modal-box {
      margin: 20px;
    }
    
    .modal-header,
    .modal-body {
      padding: 20px;
    }
  }
  