* {
    box-sizing: border-box;
}

body {
    background-image: url(https://www.infinitelcomms.co.uk/wp-content/uploads/2020/09/Home-Page-Banner-Infinitel.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 91px;
}

.decor {
    position: relative;
    max-width: 400px;
    margin: 200px auto 0;
    background: #e7d8d8;
    border-radius: 30px;
}
.form-left-decoration, .form-right-decoration {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    background: #f69a73;
    border-radius: 20px;
}
.form-left-decoration {
    bottom: 60px;
    left: -30px;
}
.form-right-decoration {
    top: 60px;
    right: -30px;
}
.form-left-decoration:before, .form-left-decoration:after, .form-right-decoration:before, .form-right-decoration:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 20px;
    border-radius: 30px;
    background: white;
}
.form-left-decoration:before {
    top: -20px;
}
.form-left-decoration:after {
    top: 20px;
    left: 10px;
}
.form-right-decoration:before {
    top: -20px;
    right: 0;
}
.form-right-decoration:after {
    top: 20px;
    right: 10px;
}
.circle {
    position: absolute;
    bottom: 80px;
    left: -55px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
}
.form-inner {
    padding: 50px;
}
.form-inner input, .form-inner textarea {
    display: block;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #E9EFF6;
    line-height: 40px;
    border-width: 0;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
}

.error_message, .error_message_webhook {
    padding-left: 15px;
}

.form-inner input[type="submit"] {
    background: #f69a73;
    color: white;
    font-size: 14px;
}

.form-inner textarea {
    resize: none;
}
.form-inner h3 {
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #707981;
}

.submit_btn {
    cursor: pointer;
}
.submit_btn:hover {
    background: #000 !important;
    color: #d87d56!important;
    border: none !important;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 1200px) {
    body {
        background-size: auto;
    }
}

@media (max-width: 520px) {
    .decor {
        max-width: 200px;
    }

    .logo {
        width: 280px;
    }
}