html{
    height: 100%;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.clearfix {
    clear: both;
}
body{
    background: -webkit-linear-gradient(39deg, rgb(220, 31, 118), rgb(253, 79, 44));
    background: linear-gradient(39deg, rgb(220, 31, 118), rgb(253, 79, 44));
    width: 100%;
    height: 100%;
    border: 1px solid #aaa;
}
.my-main{
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    max-width: 460px;
    min-height: 470px;
    max-height: 100%;
    margin: 0 auto;
    margin-top: 69px;
}
.content{
    max-width: 400px;
    margin: 0 auto;
    font-family: Arial;
}
.content__header{
    display: flex;
    flex-direction: column;
}
.header__title{
    margin-top: 0;
    padding-top: 30px;
    color:  #1b1c1d;
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
}
.content__link{
    color: red;
    text-decoration: none;
}
.header__title:before{
    content: url(../img/logo.png);
}
.header__text{
    color:  #797b7f;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}
.content-form{
    margin-top: 14px;
}
.content__input-name{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content__input{
    display: flex;
    flex-direction: column;
}
.form-name{
    max-width: 193px;
    height: 40px;
    margin-top: 15px;
}
.form-style{
    border-radius: 4px;
    border: none;
    background-color:  #f0f0f0;
    padding-left: 14px;
}
.email-address{
    max-width: 400px;
    height: 40px;
    margin-top: 15px;
}
.password{
    max-width: 400px;
    height: 40px;
    margin-top: 15px;
}
.content__btn{
    background-color:  #ea355a;
    box-shadow: 0 3px 0 0 #bd1962;
    max-width: 400px;
    height: 50px;
    border: none;
    border-radius: 4px;
    margin-top: 15px;
    color:  #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}
.my-footer{
    margin-top: 25px;
}
.text-footer{
    color:  #797b7f;
    font-size: 12px;
    font-weight: 400;
}