/* RESET + REMOVE SLIDER REFERENCES */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;

    scrollbar-width:none !important;
    -ms-overflow-style:none !important;
}

*::-webkit-scrollbar{
    width:0 !important;
    height:0 !important;
    display:none !important;
    background:transparent !important;
}

/* HTML + BODY */

html,
body{
    width:100%;
    overflow-x:hidden !important;
    overflow-y:auto !important;
    background:#f5f5f5;
}

/* BODY */

body{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* LOGIN CONTAINER */

.login-container{

    width:100%;
    max-width:420px;

    margin:0 auto;

    background:#fff;

    border-radius:32px;

    padding:35px 28px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}

/* LOGO */

.logo{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
    text-align:center;
}

/* SUBTITLE */

.subtitle{
    text-align:center;
    color:#777;
    margin-bottom:35px;
    line-height:1.5;
}

/* FORM */

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

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    font-size:14px;
}

.input-box{

    background:#f7f7f7;

    border-radius:18px;

    padding:16px 18px;

    display:flex;
    align-items:center;
    gap:10px;

    border:1px solid transparent;

    transition:0.3s;
}

.input-box:focus-within{
    border-color:#111;
    background:#fff;
}

.input-box input{

    width:100%;

    border:none;
    outline:none;

    background:transparent;

    font-size:15px;
}

/* OPTIONS */

.options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    font-size:14px;
}

.options a{
    text-decoration:none;
    color:#111;
    font-weight:600;
}

/* BUTTON */

.login-btn{

    width:100%;

    border:none;

    background:linear-gradient(to bottom right, #ff9900, #ffb84d);

    color:black;

    padding:16px;

    border-radius:18px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

/* DIVIDER */

.divider{

    display:flex;

    align-items:center;

    margin:30px 0;

    color:#999;

    font-size:14px;
}

.divider::before,
.divider::after{

    content:'';

    flex:1;

    height:1px;

    background:#eee;
}

.divider span{
    margin:0 12px;
}

/* SOCIAL LOGIN */

.social-login{
    display:flex;
    gap:15px;
}

.social-btn{

    flex:1;

    background:#fff;

    border:1px solid #eee;

    border-radius:18px;

    padding:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:0.3s;

    font-weight:600;
}

.social-btn:hover{
    background:#f7f7f7;
}

/* SIGNUP */

.signup{

    text-align:center;

    margin-top:30px;

    color:#666;

    font-size:14px;
}

.signup a{
    color:#111;
    text-decoration:none;
    font-weight:700;
}

/* MOBILE FULL WIDTH */

@media(max-width:480px){

    html,
    body{

        width:100%;

        margin:0;

        padding:0;

        background:#fff;

        overflow-x:hidden;
    }

    body{
        display:block;
    }

    .login-container{

        width:100vw;

        max-width:100vw;

        min-height:100vh;

        margin:0;

        padding:40px 24px;

        border-radius:0;

        box-shadow:none;
    }

}