.title {
    color: black;
    font-size: 3rem;
    width: 60%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.description {
    font-size: 16px;
    width: 60%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.whatsapp-container {
    position: fixed;
    bottom: 5px;
    right: 0px;
    display: flex;
    align-items: center;
}

.whatsapp-text {
    margin: 0px;
    padding: 5px;
    width: 200px;
    background: #fff;
    box-shadow: 0px 5px 10px #0002;
    border-radius: 8px;
    font-size: 12px;
}

.whatsapp {
    width: 70px;
    height: 70px;
}

.success-message {
    width: 60%;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    i {
        fill: #6FCF97;
        margin-bottom: 10px;

        svg {
            width: 50px;
            height: 50px;
        }
    }

    p {
        font-size: 18px;
        text-align: center;
        color: #6FCF97;
    }
}

.support-form {
    display: flex;
    flex-direction: column;
    width: 60%;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    margin: auto;

    label {
        color: #000000;
        font-size: 12px;
        line-height: 94.023%;
        margin-top: 16px;
    }

    input, textarea {
        border-radius: 8px;
        background: #F4F5FA;
        padding: 12px 20px;
        border: none;
        color: #0D0D0D;
        font-size: 16px;
        width: 100%;
    }

    textarea {
        resize: none;
    }

    input::placeholder, select::placeholder, textarea::placeholder {
        color: #9E9E9E;
        font-size: 14px;
    }

    input, textarea {
        outline: none;
    }

    button {
        width: fit-content;
        padding: 12px 28px;
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .support-form, .success-message {
        width: 100%;
    }

    .whatsapp-container {
        position: initial;
        justify-content: center;
        margin-top: 20px;
    }

    .title {
        font-size: 2rem;
        width: 100%;
    }

    .description {
        font-size: 1.25rem;
        text-align: start;
        width: 100%;
    }
}
