.header__container{
    padding-left: 1.125rem;
    margin-top: 10px;
}
.header__container > img{
    width: 15.625rem;
    height: 9.375rem;
    margin-left: 15%;
    margin-right: 20%;
    margin-bottom: 30%;
}


.header__login > span{
    font-size: var(--font-size-20px);
    font-weight: 600; 
    font-family: 'inter';
    line-height: 1.4375rem;
}

.header__login > img{
    width: 1.25rem;
    height: 1.1875rem;
    left: 10.25rem;
}

.header__message{
    margin-bottom: 30px;
}

.header__message > span{
    font-size: var(--font-size-13px);
    width: 15.25rem;
    color: var(--color-login-4);
}

.main__container{
    padding: 10% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.choose{
    border: 0.0625rem solid #818181;
    border-radius: 0.75rem;
    width: 90%;
    height: 3.125rem;
}

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

.choose__login{
    width: 50%;
    height: 100%;
    background-color: var(--color-login-1);
    font-weight: 500;
    font-size: var(--font-size-18px);
    text-align: center;
    color: white;
    border-radius: 12px;
}

.choose__register{
    width: 50%;
    height: 100%;
    background-color: transparent;
    color: black;
    font-weight: 500;
    font-size: var(--font-size-18px);
    border-radius: 12px;
}

.choose__form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form__inputs{
    width: 100%;
    margin-top: 20%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form__inputs > input{
    width: 100%;
    height: 40px;
    padding-inline-start: 1.5625rem;
    border: 0.0625rem solid #818181;
    border-radius: 0.75rem;
}

.button__login{
    background-color: var(--color-login-2);
    height: 50px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
}

#btnRegister{
    display: none;
}

#name {
    display: none;
}

@media screen and (min-width: 471px) {
    .header__container{
        width: 100%;
        display:  flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header__container > img {
        margin: 5% 30% 5% 30% ;
    }

}

@media screen and (min-width: 800px) {
    .header__container{
        margin-top: 20%;
    }
    .header__container > img {
        margin-bottom: 20%;
    }
}

@media screen and (min-width:900px) {
    .main{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header__container{
        flex-direction: column;
        margin: 7% 0;
        padding: 0;
        background-color: var(--color-login-1);
        width: 50%;
        height: 700px;
        border-radius: 12px 0 0 12px;
    }
    .header__container > img{
        width: 18.75rem;
        height: 15.625rem;
        margin-bottom: 5%;
    }
    .header__login{
        margin-bottom: 10px;
    }
    .header__login > img {
        width: 50px;
        height: 30px;
        
    }
    .header__login > span {
        color: white;
        font-size: var(--font-size-40px);
    }
    .header__message > span{
        color: white;
        font-size: var(--font-size-20px);
    }
    .main__container{
        height: 700px;
        border: 1px solid #818181;
        border-radius:  0 12px 12px 0;
    }
    .choose{
        border: 0.000rem solid #fff6f6;
        width: 130%;
        height: 75px;
        margin-bottom: 30px;
        
    }
    .choose__login{
        background-color: var(--color-login-1);
        color: black;
    }
    .choose__register {
        color: black;
    }

    .choose__form{
        width: 130%;
        height: 74%;
    }
    .form__inputs > input {
        height: 50px;
    }
}