#form {
    background-color: #84caeb;
    padding: 40px;
    text-align: center;
}

#form .image {
    display: inline-block;
    vertical-align: middle;
}

#form .form {
    display: inline-block;
    vertical-align: top;
    margin-left: 40px;
    width: 500px;
    text-align: left;
}

#form .title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

#form .block {
    position: relative;
    width: 100%;
    height: 32px;
    margin-bottom: 10px;
}

#form .block input[type=text],
#form .block select {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    border-radius: 0;
    padding: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    color: #777777;
    font-size: 14px;
}
#form .form .block input[type=text]::placeholder {
    opacity: 1;
    color: #777777;
}
#form .form .block input[type=text]::-ms-input-placeholder {
    opacity: 1 !important;
    color: #777777 !important;
}

#form .arrow_down {
    position: absolute;
    pointer-events: none;
    right: 10px;
    top: 11px;
    width: 20px;
    height: 10px;
    background: -webkit-linear-gradient(to bottom, #7cc5f7, #4079d6);
    background: -o-linear-gradient(to bottom, #7cc5f7, #4079d6);
    background: -moz-linear-gradient(to bottom, #7cc5f7, #4079d6);
    background: linear-gradient(to bottom, #7cc5f7, #4079d6);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#form .note {
    padding: 0 10px 10px;
    color: white;
    font-size: 13px;
}

#form .agger {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 28px;
    color: white;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
}

#form .agger a {
    color: white;
}

#form .agger input {
    position: absolute;
    opacity: 0;
}

#form .agger .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
}

#form .agger .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#form .agger input:checked ~ .checkmark:after {
    display: block;
}

#form .agger .checkmark:after {
    left: 5px;
    top: 3px;
    width: 3px;
    height: 6px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    box-sizing: unset;
}

#form .submit {
    text-align: center;
    margin-top: 20px;
}

#form .submit button{
    border: 0;
    width: 200px;
    height: 50px;
    font-size: 22px;
    color: white;
    background: #247fdd;
    cursor: pointer;
    outline: 0;
}

#form .submit button:hover{
    color: #1b91c8;
    background: #c2f7ff;
}

@media (max-width:1200px) {
    #form .image {
        width: 100%;
    }
    #form .image img {
        max-width: 397px;
        width: 80%;
    }
    #form .form {
        width: 100%;
        max-width: 768px;
        margin-left: 0;
        margin-top: 20px;
    }
}
