body{
    background-color: #BDE4FA;
}


.header{
    background-color: #0C1026;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.header>.header__title{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 10px;
}

.login-content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 64px);
}

.w-full{
    width:100%;
}

.login-text{
    font-size:2rem;
    font-weight: 500;
    text-align: center;
    margin: 20px 0;
    color: #0C1026;
}

.login-text::after{
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #0C1026;
    margin: 5px auto;
}