@keyframes error0 {
    from {
        background-color: #F3AAAA;
        border-color: #D86E6E;
    }
    to {
        background-color: transparent;
        border-color: var(--gray);
    }
}
@keyframes error1 {
    from {
        background-color: #F3AAAA;
        border-color: #D86E6E;
    }
    to {
        background-color: transparent;
        border-color: var(--gray);
    }
}

#sendMessage
{
    margin: 100px 0;
}

#sendMessage .header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-family: ChaletParisNineteenEighty, serif;
    letter-spacing: 1.5px;
}
#sendMessage .header .left {
    display: flex;
}
#sendMessage .header .left .telegram {
    font-size: 30px;
    color: #2CA5E0;
    margin: 0 5px;
}
#sendMessage .header .left .vk {
    width: 30px;
    height: 30px;
    background-color: #44668F;
    border-radius: 25%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}

#sendMessage .content
{
    margin-top: 60px;
    display: flex;
    font-weight: initial;
}

#form
{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
}

#form .s_in,
#form textarea
{
    animation-duration: 1s;
}
#form textarea
{
    padding: 10px 12px;
    font-family: CenturyGothic, serif;
    font-size: 17px;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    outline: none !important;
    border: solid 1px var(--gray);
}
#form > div
{
    margin-bottom: 34px;
}
#form > div:last-child
{
    margin-bottom: 0;
}
#form .in_text span
{
    background: #fff;
}

#sendMessage .content .right
{
    margin-left: 20px;
}

#sendMessage,
#sendMessage * {
    /*background-color: #00000050;*/
}