html,
body {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
    background: #eee;
    overflow: hidden;
}

form {
    background: #fffd;
    margin: 0 auto;
    padding: 30px 60px;
    width: 300px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: #0007 15px 15px 35px;
}

.brand-title {
    font-size: 32px;
    font-weight: bolder;
    color: #3e3e3e;
}

.inputs label,
.inputs input {
    display: block;
    width: 100%;
}
.inputs label{
    margin-top: 20px;
}
input[type='email'],
input[type='password'],
input[type='text'] {
    height: 40px;
    border: 0;
    border: 2px solid #eaedff;
    -moz-appearance: none;
    appearance: none;
}
button{
    background: #3160d8;
    border: none;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 45px;
    text-align: center;
    text-transform: unset;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    border-radius: 0;
    cursor: pointer;
}
button:hover{
    background:#181E23
}