/*
    Theme Name: custom_theme
*/
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li, ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #1a1b1f;
}
body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #1a1b1f;
    background: #fff;
}
/* .container {
    max-width: 1432px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
} */
.main {
    min-height: 100vh;
}
.main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_left {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 50%;
}
.main_right {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
/* .main_right-title {

}
.main_right-description {

} */

.main_btn {
    width: 100%;
    min-height: 40px;
    border: 1px solid #3888EE; 
    background-color: #3888EE;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: all 0.5s ease;
}
.main_btn:hover {
    background-color: #fff;
    color: #3888EE;
}
.main_btn-thanks {
    min-height: 40px;
    border: 1px solid #3888EE; 
    background-color: #3888EE;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: all 0.5s ease;    
    padding: 4px;
}
.main_btn-thanks:hover {
    background-color: #fff;
    color: #3888EE;
}
.main_form {
    width: 30vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.main_form input {
    padding: 8px 16px;
    border: 1px solid #EDEDED;
    min-height: 40px;
    background-color: #EDEDED;
    color: #686868;
    border-radius: 3px;
    font-size: 15px;
    line-height: 1.4;
}

.main_form-privacy {
    color: #686868;
    font-size: 14px;
    padding: 16px 4px;
}
.main_form-privacy a {
    color: #c36;
}
.main_form-privacy a:hover {
    text-decoration: underline;
}

.thank_description {
    margin-bottom: 24px;
}

.succes_img {
    width: 50px;
    height: 50px;
}


@media (max-width: 850px) {
    .main_form {
        width: 45vw;
    }
}
@media (max-width: 650px) {
    .main_left {
        display: none;
    }
    .main_right {
        width: 100%;
    }
    .main_form {
        width: 80vw;
    }
}