@charset "utf-8";

.header_text{
    text-align: center;
    width: 100%;
    height: 50%;
    font-size: 150%;
    font-weight: bold;
    margin-top: 5rem;
}
.login__page{
    font-size: 1.4rem; /* 14px */
    display: flex;
    flex-flow: column;
    width: 682px;
    height: 100%;
    margin:  0 auto;
}

.main{
    display: flex;
    flex-flow: column;
}
.main__form_label{
    flex :1;
    justify-content: center;
    align-items: center;

    padding: 0.5rem 0.5rem;

    font-family: sans-serif;
    font-size: 1em;
    color:  #000000;
    text-align: center;
    overflow-wrap: anywhere;
    
    background-color: #c2bfbf;
    border-radius: 0.8rem;
    border: 0.01em solid #000000;

    margin-right: auto;
    margin-left: auto;
}
.main__input_form
{
    flex :3;
    justify-content: center;
    align-items: center;
    
    font-size: 1em;
    text-indent: 0.7em;
    border-radius: 0.7rem;

    background: #ffffff;
    border: 1px solid #000000;
}
.main__input_form:focus
{
    background: #edf4ff;
    border: 1px solid #4881d9;
}
p{
    display: flex;
}

.button__login{
    flex :1;
    width: 100%;
    height: 30%;
    text-align: center;
    padding: 1.2rem 0.5rem;
    font-family: sans-serif;
    font-size: 18px;
    color:  #fff;
    text-align: center;
    overflow-wrap: anywhere;
    
    background-color: #87b964;
    border-radius: 0.7rem;
    border: 0.1rem solid #9e9e9e;
    margin-right: auto;
    margin-left: auto;
}

@media (any-hover:hover){
    .button__login{
        transition: background-color 0.2s;
    }
    .button__login:hover{
        background-color: #54802f;
    }
}