* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    min-height: 100vh;
}
body> form {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1312px;
    padding: 0 36px;
    margin: 0 auto;
}

/* --------------------- Header --------------------- */

.header {
    padding: 18px 0;
    background-color: #393939;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__lang {
    font-family: inherit;
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.header__lang option {
    color: #393939;
}

/* --------------------- Main --------------------- */

.main {
    display: flex;
    flex-grow: 1;
    background-color: #f0f0f0;
}

.main__content {
    height: 100%;
    display: flex;
    align-items: center;
}

.main__form {
    padding: 50px;
    width: 580px;
    background-color: #FFFFFF;
}

.main__form-title {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 40px;
    font-weight: 700;
    color: #333333;
}

.main__form-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.main__form-input {
    margin-bottom: 40px;
    position: relative;
}

.main__form-input.main__form-input--error input {
    border-color: #F65454;
}

.main__form-input.main__form-input--error .error {
    display: block;
}

.main__form-input input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #A7A9AC;
    font-size: 16px;
    font-weight: 400;
    /* color: #A7A9AC; */
}

.main__form-input input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #A7A9AC;
}

.main__form-input .showPassword {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.main__form-input .showPassword img {
    opacity: 0.5;
}

.main__form-input .error {
    position: absolute;
    bottom: -23px;
    left: 0;
    font-size: 14px;
    font-weight: 400;
    color: #F65454;
}

.main__form-warning {
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    color: #7C7C7C;
}

.main__form-btn {
    width: 100%;
    height: 50px;
    background-color: #EF8F22;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 2px;
}

/* --------------------- Footer --------------------- */

.footer {
    padding: 10px 0;
    background-color: #393939;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__rights span,
.footer__links a,
.footer__powered span {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
}

.footer__links a {
    margin-right: 40px;
}

.footer__links a:last-child {
    margin-right: 0;
}

.footer__powered {
    display: flex;
    align-items: flex-end;
}

.footer__powered span {
    margin-right: 20px;
}