body {
    background: #e5eeee;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

body, form, div, p, a, img, h1, h2, h3, h4, h5, h6, table, table tr, table td {
    border: none;
    color: #000000;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

input,
textarea,
select {
    outline: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

a {
    text-decoration: underline;
    outline: none;
}

a:hover {
    text-decoration: none;
}

h1, h2 {
    font-size: 20px;
    padding: 0 0 10px 0;
    color: #545454;
}

.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
}

.form {
    width: 400px;
    background-image: url(img/bg.jpg);
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 20px 21px -9px #000000;
}

.form__row {
    width: 100%;
    display: flex;
    margin: 50px 0 50px 70px;
}

.form__tab {
    color: #ffffff;
    margin-right: 25px;
    border: 2px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    transition-duration: 0.5s;
}

.form__tab:hover {
    border: 2px solid transparent;
    border-radius: 3px;
    border-bottom: 2px solid #e66a64;
    background-color: #ffffff23;
}


.form__main {
    width: 100%;
    margin: 0 70px 0 70px;
}

.form__element {
    margin: 0 0 18px 0;
}

.form__element--label {
    color: #ffffff;
    font-size: 16px;
    padding: 0 0 5px 0;
}

.form__element--ctrl {
    color: #ffffff;
    background-color: transparent;
    border-style: none;
    border: 2px solid #9a85c7;
    height: 42px;
    width: 260px;
    box-sizing: border-box;
    padding-left: 10px;
    transition-duration: 0.5s;
}

.form__element--ctrl:invalid {
    background-color: #e6625b71;
}

.form__element--ctrl:focus {
    background-color: transparent;
}

.form__row--tick {
    margin: 0;
}

.form__element--signed-in {
    font-size: 13px;
}

.form__element--tick {
    content: "";
    width: 17px;
    height: 17px;    
}

.form--button {
    background-color: #23ae92;
    color: rgba(255, 255, 255, 0.7);
    border-style: none;
    border: 2px solid #23ae92;
    height: 42px;
    width: 260px;
    box-sizing: border-box;
    margin-top: 22px;
    transition-duration: 0.5s;
}

.form--button:hover {
    color: rgba(255, 255, 255, 1);
    font-size: 19px;
    font-weight: bolder;
    background-color: #23ae928a;
    border-color: #1f907a;
}

.form__row--link {
    margin: 35px 0 35px 0;
    
}

.form__submit-link {
    color: #b9b9cc;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    text-decoration: none;
    width: 260px;
    transition-duration: 0.5s;
}

.form__submit-link--password {
    margin-right: 42px;
}

.form__submit-link:hover {
    color: #d4d4e0;
    border-bottom: 1px solid #d4d4e0;
}






