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

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

/* ================= BACKGROUND ================= */

.bg{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:0;
}

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

.blur1{
    width:300px;
    height:300px;
    background:#00c6ff;
    top:-80px;
    left:-80px;
}

.blur2{
    width:280px;
    height:280px;
    background:#7b61ff;
    right:-100px;
    bottom:-100px;
    animation-delay:2s;
}

.blur3{
    width:220px;
    height:220px;
    background:#00ffbf;
    top:40%;
    left:45%;
    animation-delay:4s;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* ================= CONTAINER ================= */

.wrapper{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1150px;
    display:grid;
    grid-template-columns:1fr 1fr;
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

/* ================= LEFT ================= */

.left{
    padding:70px;
    color:#fff;
    background:
    linear-gradient(
    135deg,
    rgba(0,198,255,.18),
    rgba(123,97,255,.15)
    );
    position:relative;
}

.logo{
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    color:#00d9ff;
    margin-bottom:30px;
}

.left h1{
    font-size:58px;
    line-height:1.05;
    margin-bottom:25px;
}

.left h1 span{
    color:#00d9ff;
}

.left p{
    color:#d7dfeb;
    line-height:1.8;
    margin-bottom:45px;
    font-size:15px;
    max-width:500px;
}

.cards{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.card{
    min-width:150px;
    padding:22px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
}

.card h3{
    color:#00d9ff;
    font-size:28px;
    margin-bottom:8px;
}

.card p{
    margin:0;
    font-size:14px;
}

/* ================= RIGHT ================= */

.right{
    background:#ffffff;
    padding:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.form-box{
    width:100%;
    max-width:420px;
}

.form-box h2{
    font-size:36px;
    color:#111827;
    margin-bottom:12px;
}

.subtitle{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:20px;
    font-size:15px;
}

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#374151;
    font-size:14px;
}

.input{
    position:relative;
}

.input input{
    width:100%;
    height:58px;
    border-radius:16px;
    border:1px solid #d1d5db;
    padding:0 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
    background:#f9fafb;
}

.input input:focus{
    border-color:#00b7ff;
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,183,255,.12);
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
    gap:10px;
}

.remember{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#4b5563;
}

.remember input{
    width:16px;
    height:16px;
}

.forgot{
    color:#0099ff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#00c6ff,#0072ff);
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,114,255,.3);
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(0,114,255,.35);
}

.divider{
    text-align:center;
    position:relative;
    margin:28px 0;
    color:#9ca3af;
    font-size:14px;
}

.divider::before,
.divider::after{
    content:'';
    position:absolute;
    width:40%;
    height:1px;
    background:#e5e7eb;
    top:50%;
}

.divider::before{
    left:0;
}

.divider::after{
    right:0;
}

.socials{
    display:flex;
    gap:15px;
}

.social-btn{
    flex:1;
    height:52px;
    border-radius:14px;
    border:1px solid #d1d5db;
    background:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.social-btn:hover{
    background:#f3f4f6;
    transform:translateY(-2px);
}

.bottom{
    text-align:center;
    margin-top:28px;
    color:#6b7280;
    font-size:14px;
}

.bottom a{
    color:#0072ff;
    text-decoration:none;
    font-weight:600;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .wrapper{
        grid-template-columns:1fr;
        max-width:600px;
    }

    .left{
        padding:45px;
    }

    .left h1{
        font-size:42px;
    }

    .right{
        padding:45px;
    }

}

/* ================= MOBILE ================= */

@media(max-width:576px){

    body{
        padding:12px;
    }

    .wrapper{
        border-radius:24px;
    }

    .left{
        padding:30px 25px;
    }

    .logo{
        font-size:12px;
        margin-bottom:20px;
    }

    .left h1{
        font-size:34px;
    }

    .left p{
        font-size:14px;
        margin-bottom:30px;
    }

    .cards{
        gap:12px;
    }

    .card{
        flex:1 1 100%;
        min-width:100%;
        padding:18px;
    }

    .right{
        padding:30px 22px;
    }

    .form-box h2{
        font-size:28px;
    }

    .subtitle{
        font-size:14px;
        margin-bottom:28px;
    }

    .input input{
        height:54px;
        border-radius:14px;
    }

    .btn{
        height:54px;
        border-radius:14px;
    }

    .row{
        flex-direction:column;
        align-items:flex-start;
    }

    .socials{
        flex-direction:column;
    }

}