*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

body{
    background:#0f1419;
    color:#f5f5f5;
    display:flex;
    justify-content:center;
    min-height:100vh;
}

.container{
    width:100%;
    max-width:420px;
    min-height:100vh;
    padding:18px 32px 28px;
    display:flex;
    flex-direction:column;
}

.language{
    text-align:center;
    color:#b3b3b3;
    font-size:14px;
    margin-top:18px;
    margin-bottom:70px;
}

.logo{
    width:72px;
    height:72px;
    object-fit:contain;
    align-self:center;
    margin-bottom:55px;
}

.login{
    width:100%;
}

.login input{
    width:100%;
    height:46px;
    background:#1b2733;
    border:1px solid #374151;
    border-radius:12px;
    color:#fff;
    font-size:16px;
    padding:0 16px;
    margin-bottom:12px;
    transition:.2s;
}

.login input::placeholder{
    color:#8e8e8e;
}

.login input:focus{
    border-color:#7f8b99;
    background:#1d2935;
}

.login-btn{
    width:100%;
    height:44px;
    border:none;
    border-radius:999px;
    background:#1877f2;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    margin-top:12px;
    transition:.2s;
}

.login-btn:hover{
    background:#166fe5;
}

.login-btn:active{
    transform:scale(.99);
}

.forgot-link{
    display:block;
    text-align:center;
    margin-top:22px;
    margin-bottom:28px;
    text-decoration:none;
    color:#f5f5f5;
    font-size:15px;
    font-weight:500;
}

.forgot-link:hover{
    text-decoration:underline;
}

.create-btn{
    margin-top:auto;
    width:100%;
    height:44px;
    border:1px solid #3797ef;
    border-radius:999px;
    color:#3797ef;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:16px;
    font-weight:600;
    transition:.2s;
}

.create-btn:hover{
    background:rgba(55,151,239,.08);
}

.meta{
    text-align:center;
    margin-top:28px;
    margin-bottom:10px;
    color:#d6d6d6;
    font-size:26px;
    font-weight:500;
}

.meta i{
    margin-right:8px;
}

@media (max-width:480px){

    .container{
        padding:18px 20px 24px;
    }

    .language{
        margin-bottom:60px;
    }

    .logo{
        width:66px;
        height:66px;
        margin-bottom:50px;
    }

    .login input{
        font-size:15px;
    }

    .forgot-link{
        font-size:14px;
    }

    .create-btn{
        font-size:15px;
    }

    .meta{
        font-size:22px;
        margin-top:22px;
    }
}

@media (max-height:700px){

    .language{
        margin-bottom:45px;
    }

    .logo{
        margin-bottom:35px;
    }

    .forgot-link{
        margin-bottom:18px;
    }

    .meta{
        margin-top:18px;
    }
}

.hidden{
    display:none;
}

#loading{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    z-index:9999;
}

.loader{
    width:50px;
    height:50px;
    border:5px solid #ddd;
    border-top:5px solid #1877f2;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}