.login__hruta{
    display: flex;
    align-items: center;
    justify-content: center;
}

.hruta__container{
    width: 100%;
    max-width: 400px;
    height: 680px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}   

.hruta__login-title{
    background: #3f51b5;
    color: #fff;
    padding: 2rem 0 120px 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}   

.hruta__logo{
    padding: .25rem;
    position: absolute;
    width: 120px;
    height: 120px;
    top: -50px;
    left: 50%;
    background:  #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    
    img{
        width: 100%;
        height: 100%;
    }
}

.hruta__form{
    position: absolute;
    top: 11rem;
    left: 0;
    height: 400px;
    width: 100%;
}

.hruta__form-container{
    width: calc(100% - 2rem);
    padding: 6rem 0rem 0 0rem;
    background: #fff;
    border-radius: 5px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.hruta__form-group{
    display: flex;
    flex-direction: column;
    background: #e9e9e9;
    margin: 0 1rem;
    position: relative;
    border-radius: 5px;
    transition: all .2s;
}

.hruta__form-group:hover{
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}   

.hruta__form-group label{
    display: none;
}

.hruta__form-group select,
.hruta__form-group input{
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    margin-right: 1.25rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hruta__form-container button{
    margin: 0 1rem;
    padding: 1rem 1rem;
    font-size: var(--font-normal-text);
    border: none;
    border-radius: 5px;
    background: #3f51b5;
    color: #fff;
    cursor: pointer;
}

.form__error{
    background: rgb(245, 194, 194);
    padding: .25rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid red;
    color: red;
    margin: 0 1rem;
}
