* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Nunito;
    src: url(../fonts/Nunitobold.woff);
    font-weight: bold;
}

body {
    font-family: Nunito, sans-serif;
    margin: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 251, 1) 50%, rgba(248, 248, 250, 1) 50%);
}

.header {
    padding: 27px 0 56px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    margin: 56px 0 90px 0;
    display: flex;
}

.main .container {
    display: flex;
    justify-content: space-between;
}

.main-title {
    font-weight: bold;
    font-size: 36px;
    line-height: 49px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 7px;
}

.main-description {
    font-weight: bold;
    font-size: 22px;
    line-height: 27px;
    color: rgba(99, 99, 99, 1);
    max-width: 496px;
    margin-bottom: 42px;
}

.label {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: rgba(198, 198, 196, 1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

input {
    font-weight: bold;
    font-size: 20px;
    color: rgba(50, 50, 50, 1);
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid rgba(198, 198, 196, 1);
}

input:focus {
    outline: none;
}

.main-form-checkbox input {
    width: 16px;
    height: 16px;
}

.main-form-checkbox label {
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: rgba(99, 99, 99, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    width: 210px;
    padding: 23px;
    background: rgba(221, 49, 66, 1);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    align-self: center;
    display: block;
    margin: 40px auto 0px;
}

.main-form-login {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    line-height: 27px;
    color: rgba(99, 99, 99, 1);
}

.main-form-login p {
    margin: 44px auto 0;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.popup-ok {
    margin-top: 20px;
    padding: 15px 40px;
    background: rgba(221, 49, 66, 1);
    border: none;
    border-radius: 40px;
    color: white;
    font-size: 18px;
    cursor: pointer;
}