.form_message
{
    display: none;
    display: flex;
    flex-wrap: wrap;
}

.form_message.success
{
    display: flex;
    color:green;
}

.form_message.error
{
    display: flex;
    color:red;
}

/*html {
    scroll-behavior: smooth;
}*/

#zoho_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    width: 600px;           /* фіксована ширина */
    max-width: 90vw;        /* не ширше екрана */
    max-height: 90vh;
    overflow: auto;
    display: none;
}
#zoho_container_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: #CB7723;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: background-color 0.2s ease;
}

#zoho_container_close:hover {
    background-color: darkred;
}