body {
    font-family: var(--poppins-font);
}

.background {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 80px 0;
    justify-content: center;
    background-color: var(--background-color);
}

.container {
    width: 700px;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--white-color);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}

.container-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.container-header img {
    width: 180px;
}

.content-header h3,
.content-highlight h2 {
    margin: 0;
    line-height: 1.2;
}

.content-header h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 0.8;
}

.content-highlight h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--blue-color);
}

.content-body {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-body p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
}

.form-group label {
    font-family: var(--poppins-font);
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    font-family: var(--poppins-font);
}

.content-footer {
    display: flex;
    justify-content: start;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 10px;
}

.btn-send,
.btn-back {
    font-family: var(--poppins-font);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    border: none;
    font-size: 18px;
}

.btn-send:hover,
.btn-back:hover {
    cursor: pointer;
    color: var(--off-white-color);
    transition: 0.3s;
}

.btn-send {
    background-color: var(--blue-color);
}

.btn-send:hover {
    background-color: var(--blue-color-light);
}

.btn-back {
    background-color: var(--pink-color);
    text-align: center;
}

.btn-back:hover {
    background-color: var(--pink-color-light);
}

@media screen and (max-width: 1118px) {
    .container {
        width: 90%;
    }
}

@media screen and (max-width: 784px) {
    .background {
        padding: 30px 0;
    }
    .content-header h3 {
        font-size: 20px;
    }
    .content-highlight h2 {
        font-size: 38px;
    }
    .content-body p {
        font-size: 16px;
    }
    .content-footer {
        flex-direction: column-reverse;
        width: 100%;
        gap: 10px;
    }
    .btn-send, .btn-back {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 14px;
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .content-header h3 {
        font-size: 18px;
    }
    .content-highlight h2 {
        font-size: 32px;
    }
    .content-body p {
        font-size: 14px;
    }
    .btn-send, .btn-back {
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 14px;
        width: 100%;
    }
}