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

html {
    scrollbar-gutter: stable;
}


body{
    color: #fff;
    height: auto;
    overflow-x: hidden;
}

.login-page{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    align-items:center;
    background:#1d1d1d;
    padding:40px;
}

.login-block-1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card{
    width:420px;
    background:#232323;
    border-radius:18px;
    padding:42px;
    box-sizing:border-box;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);
    box-shadow:
        0 20px 60px rgba(0,0,0,.35);
}

.login-logo{
    width:160px;
    margin-bottom:24px;
}

.login-card h1{
    color:#fff;
    font-size:34px;
    margin:0;
    font-family:"Manrope",sans-serif;
}

.login-subtitle{
    margin-top:14px;
    color:#a7a7a7;
    line-height:1.5;
    font-size:15px;
}

#loginForm{
    margin-top:35px;
}

#phone{
    width:100%;
    height:56px;
    border-radius:10px;
    background:#171717;
    border:1px solid #333;
    color:#a7a7a7;
    font-size:18px;
    padding:0 18px;
    box-sizing:border-box;
    outline:none;
    transition:.25s;
}

#phone:focus{
    border-color:#fceeda;
}

#loginForm button{
    width:100%;
    height:56px;
    margin-top:18px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:#fceeda;
    color:#111;
    font-size:18px;
    font-weight:700;
    transition:.25s;
}

#loginForm button:hover{
    filter:brightness(1.05);
}

#loginMessage{
    margin-top:20px;
    color:#66c748;
    min-height:20px;
}

.login-footer{
    width: 100%;
    display:flex;
    justify-content: space-between
}

.login-footer div{
    display:flex;
    gap: 30px;
}


.login-footer a{
    color:#8d8d8d;
    text-decoration:none;
    font-size:15px;
    transition:.25s;
}

.login-footer a:hover{
    color:#fceeda;
}

.login-footer p{
    color:#8d8d8d;
    text-decoration:none;
    font-size:15px;
}