*{
    margin: 0;
    padding: 0;
    border: 0px;
}
.form{
    width: 481px;
    height: 392px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    align-items: center;
    background: #F7F5F9;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
}
.form__body{
    margin: 40px;
}
.form__title{
    margin: 0px 0px 25px 0px;
    font-weight: 700;
    font-size: 24px;
    line-height: 20px;
    color: #3B3D43;
}
.form__item{
    width: 100%;
    height: 48px;
    margin: 0px 0px 25px 0px;
    padding: 0px 0px 0px 15px;
    border-radius: 6px;
    box-sizing:border-box;
    outline: none;
    font-size: 15px;
    color: #D0C9D6;
}
.form__item:focus{
    border: #854FC8 solid 1px;
}
.form__submit{
    width: 100%;
    height: 48px;
    background: #6979F8;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.form__submit:hover{
    transition: .5s;
    background: #a2aae4;
    color: #3B3D43;
}
.form__submit:active{
    transition: .5s;
    background: #6979F8;
    color: #ffffff;
}