html,
body {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
    background-image: linear-gradient(230deg, #573abd 0%, #e2741a 100%);
    ;
}

form {
    background: #fffd;
    margin: 0 auto;
    padding: 30px 60px;
    width: 300px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.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;
    text-align: center;
    -moz-appearance: none;
    appearance: none;
}
button{
    background: transparent linear-gradient(90deg, #ff9222 0%, #ff9222 100%) 0% 0% no-repeat padding-box;
    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
}