.complain_container {
    background-color: #f1f1f1;
    padding: 100px 15px;
    min-height: 600px;
}

.complain-content {
    display: flex;
    box-shadow: 3px 3px 5px #888888;
    border-radius: 35px;
    overflow: hidden;
}

.left_side, .right_side {
    width: 50%;
    display: inline-flex;
    padding: 50px 35px;
    justify-content: center;
    flex-direction: column;
}

.left_side {
    background-color: var(--bs-cyan);
    color: white;
}

.right_side {
    background-color: white;
}

.icon-text {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.icon-text svg {
    margin: 15px;
}

.icon-link {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 25px;
}

.icon-link svg {
    width: 50px;
    height: 50px;
}

.icon-link svg path, .icon-text svg path {
    fill: var(--color-primary);
}

.icon-link a {
    transition: 0.3s;
    background-color: white;
    border: 2px solid white;
}

.icon-link a:hover {
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    background-color: var(--color-primary);
}

.icon-link a:hover svg path {
    fill: white;
}

#btn_send {
    color: white;
    display: block;
    border: var(--border-secondary);
    text-align: center;
    background-color: var(--color-secondary);
}

.form_group label {
    color: white;
}

.form_group input, .form_group textarea {
    background: white !important;
}