*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

/* =========================
AUTH PAGE
========================= */

.auth-page{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    radial-gradient(circle at top left,#2563eb 0%,#0f172a 60%);
}

/* =========================
AUTH BOX
========================= */

.auth-box{

    width:100%;
    max-width:420px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.1);

    padding:45px;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);

    color:white;
}

.auth-box h2{
    font-size:36px;
    margin-bottom:30px;
    font-weight:800;
}

/* =========================
FORM
========================= */

.auth-box form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.auth-box input{
    width:100%;

    padding:16px;

    border:none;

    border-radius:16px;

    background:rgba(255,255,255,.12);

    color:white;

    outline:none;

    font-size:14px;
}

.auth-box input::placeholder{
    color:rgba(255,255,255,.6);
}

.auth-box button{

    border:none;

    padding:16px;

    border-radius:16px;

    background:#3b82f6;

    color:white;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.auth-box button:hover{
    background:#2563eb;
}

/* =========================
DIVIDER
========================= */

.divider{
    text-align:center;
    margin:25px 0;
    color:rgba(255,255,255,.5);
    position:relative;
}

.divider::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:40%;
    height:1px;
    background:rgba(255,255,255,.15);
}

.divider::after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    width:40%;
    height:1px;
    background:rgba(255,255,255,.15);
}

/* =========================
GOOGLE BUTTON
========================= */

.google-btn{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    padding:16px;

    border-radius:16px;

    background:white;

    color:#111827;

    font-weight:700;

    transition:.3s;
}

.google-btn:hover{
    transform:translateY(-2px);
}

/* =========================
REGISTER TEXT
========================= */

.auth-box p{
    margin-top:25px;
    text-align:center;
    color:rgba(255,255,255,.7);
}

.auth-box p a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:600;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .auth-box{
        margin:20px;
        padding:35px 25px;
    }

    .auth-box h2{
        font-size:28px;
    }

}

