@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    padding: 0;
    margin: 0;
    background: url("img/bg-3.png") no-repeat #FFF; /* #57bfca */
    background-size: cover;
    color: #FFF;
}

body.thanks {
    background: #FFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
}

.thanks .wrapper {
    min-height: unset;
    display: block;
    align-items: unset;
}

.thanks > .wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

* {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    box-sizing: border-box;
    outline: none;
}

.form-container {
    max-width: 450px;
    width: 100%;
}

.form-box input {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 15px 0;
}

.form-box input.btn {
    width: auto;
    display: inline-block;
    background: #f8ed68;
    color: #333;
    padding: 10px 30px;
    border: none;
    margin-bottom: 0;
    margin-top: 20px;
}

.form-box--title {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.55;
    font-weight: 600;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    margin-bottom: 30px;
}

.input-box--placeholder {
    color: #333;
    position: absolute;
    font-size: 18px;
    line-height: 18px;
    top: calc(50% - 19px);
    left: 15px;
    z-index: 2;
    transition: top .3s ease-out, left .3s ease-out, font-size .3s ease-out;
}

input:focus + .input-box--placeholder,
input.has-blur + .input-box--placeholder {
    font-size: 10px;
    top: calc(50% - 29px);
}

.logo {
    width: 180px;
    height: 180px;
    background: url("img/logo.svg") no-repeat;
    background-size: contain;
}

.thanks-logo {
    width: 60px;
    height: 60px;
    background: url("img/logo.svg") no-repeat;
    background-size: 62px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-header {
    background:#45babe;
    border-bottom: 4px solid #f3e85d;
    padding: 10px 15px;
}

.thanks-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thanks-header a {
    display: inline-block;
    padding-bottom: 0;
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 0 0 transparent;
    transition: .15s ease-out;
}

.thanks-header a:hover {
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.thanks-row {
    display: flex;
    color: #212529;
    justify-content: center;
}

.thanks-text--title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
}

.thanks-text--description {
    margin-top: 15px;
    font-weight: 600;
}

.thanks-text--subdescription {
    font-weight: 300;
    margin-top: 20px;
}

.thanks-row > div {
    max-width: 50%;
}

.thanks-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 80px;
}

.thanks-social > div {
    font-size: 0;
    opacity: .5;
    transition: .2s ease-out;
}

.thanks-social > div:hover {
    opacity: 1;
}

.thanks-social img {
    max-width: 40px;
}

.thanks-images--item img {
    max-width: 100%;
    max-height: 150px;
}

.thanks-images--box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 25px;
}

.thanks-col--images {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.thanks-col--text {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.thanks-text--img {
    margin-bottom: 60px;
    font-size:0;
}

.thanks-text--img img {
    max-width: 400px;
}