.login-wrap{
    background-color: #f8f9fa;
    width: 100vw;
    height: calc(100vh - 15.7025rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-wrap{
    width: 28.125rem;
    max-width: 28.125rem;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px;;
    border-radius: .625rem;
    padding: 1.875rem;
}

.form-head{
    padding-bottom: 1.25rem;
}

.form{
    display: grid;
    gap: 1.25rem;
}
.form-item{
    align-items: center;
    border: 1px solid #e4e9f0;
    display: flex;
    flex-direction: row;
    height: 3rem;
}
.form-item input{
    border:none;
    flex: 1;
    height: 100%;
    outline: none;
    padding: 0;
}
.form-footer{
    padding: 2rem 0;
}

.form-footer .btns{
    width: 100%;
}

.form-footer .btns button{
    background-color: #111817;
    color: #fff;
    width: 100%;
    padding: .85rem;
    border-radius: .5rem;
}

.form-footer .desc{
    margin-top: 1.25rem;
    font-size: .85rem;
    display: flex;
    justify-content: space-between;
}

.form-footer .desc a{
    color: #0ea5e9;
}

@media (max-width: 768px) {
    .form-wrap{
        margin: 1rem;
    }
}