.body{
    width: 100%;
    display: flex;              
    flex-direction: row;
    justify-content: center;   
    align-items: center;      
}


.form div {
    text-align: center;
}


.form button[type='submit']{
    width: 55%;
    font-size: 20px;
    border: none;
    border-radius: 15px;
    padding: 10px;
    background-color: white;
    box-shadow: 1px 1px 5px #bdbdbd;
    cursor: pointer;
}
.form button[type='submit']:hover{
    background-color: rgba(224, 224, 224, 0.39);
}


.form button[type='button']{
    cursor: pointer;

    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #b4b4b4;

    background-color: white;
    padding: 5px 7px;

    text-align: center;
}
.form button[type='button']:hover{
    background-color: #e5e5e5;
}


.box-form{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    width: 320px;
    border-radius: 20px;
    box-shadow: 1px 1px 2px #bdbdbd;
    padding: 5px 15px;
    background-color: #fff;
}
.box-form label,
.box-form input{
    margin-right: 7%;
}
.box-form input{
    border: none;
    border-radius: 10px;
    width: 60%;
    height: 50%;
}
.box-form label{
    flex-shrink: 0;
}
.box-form input:focus{
    outline: none;
    border: 1px solid #80bcff;
    box-shadow: 0 0 3px #7ebaff;
}


.func-options{
    font-size: 12px;
}
.func-options input,
.func-options label{
    cursor: pointer;
}
.func-options a,
.func-options ins{
    color: rgba(0, 123, 255, 0.75);
}


.title,
.title strong{
    font-size: 27px;
}
.title span{
    font-size: 22px;
}


.welcome{
    font-size: 18px;
}


input.show-password{
    width: 20px;
    height: 15px;
    cursor: pointer;
    white-space: pre;
    border: 1px;
}
