/* style.css (futuristic glass UI) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

html,
body {
    height: 100%
}

body {
    background: linear-gradient(180deg, #07102a, #0b1530);
    color: #dbe9ff;
    overflow-x: hidden
}

.particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0
}

.auth-layout {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: 60px;
    gap: 40px;
    align-items: center
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin: auto 0;
    border: 1px solid rgba(120, 80, 255, 0.06);
    box-shadow: 0 8px 40px rgba(5, 8, 25, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.02)
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: #caa5ff
}

.auth-subtitle {
    margin-top: 6px;
    color: #98a3be;
    font-size: 13px
}

.auth-form {
    margin-top: 20px
}

.input-label {
    display: block;
    margin-bottom: 6px;
    color: #b6c8e6;
    font-size: 13px
}

.input-field {
    position: relative;
    margin-bottom: 16px
}

.input-field input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border-radius: 12px;
    background: rgba(10, 12, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #d6eaff;
    font-size: 14px;
    transition: 0.2s
}

.input-field input:focus {
    outline: none;
    border-color: #00E5FF;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.22)
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #66d9ff;
    font-size: 14px
}

.link-forgot {
    display: block;
    text-align: right;
    color: #4fc3ff;
    margin-bottom: 8px;
    font-size: 13px
}

.btn-primary {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 0;
    background: linear-gradient(90deg, #008CFF, #00E5FF);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.35)
}

.btn-primary:hover {
    box-shadow: 0 0 22px rgba(0, 200, 255, 0.65)
}

.divider {
    text-align: center;
    margin: 18px 0;
    color: #7ca6d4
}

.social-row {
    display: flex;
    gap: 12px
}

.btn-social {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #dbe9ff
}

.auth-bottom-text {
    text-align: center;
    margin-top: 16px;
    color: #9fb7d6
}

.auth-bottom-text a {
    color: #4fc3ff
}

.strength-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    margin-top: -10px;
    margin-bottom: 14px
}

#strength-fill {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    transition: 0.25s;
    background: #ff3b3b
}

.orb-container {
    position: relative;
    margin: auto;
    width: 360px;
    height: 360px
}

.orb-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, #003B5E, #00121D);
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.45), inset 0 0 40px rgba(0, 200, 255, 0.28);
    animation: orbPulse 3s infinite alternate
}

@keyframes orbPulse {
    from {
        transform: translate(-50%, -50%) scale(0.96)
    }

    to {
        transform: translate(-50%, -50%) scale(1.04)
    }
}

.orb-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 3px dashed rgba(0, 230, 255, 0.38);
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.45);
    animation: rotateOrb 8s linear infinite
}

@keyframes rotateOrb {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8c7e9;
    margin-top: 8px;
    font-size: 14px
}

.btn-home {
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #e9f6ff;
    border: 1px solid rgba(255, 255, 255, 0.12)
}

@media (max-width:1024px) {
    .auth-layout {
        grid-template-columns: 1fr;
        padding: 28px
    }

    .orb-container {
        transform: scale(0.9);
        margin-bottom: 28px
    }
}