:root {
    --doly-form-accent-color: #FFCD00;
    --doly-form-pastel-accent-color: rgba(255, 204, 0, .25);
    --doly-form-white-color: rgba(35, 35, 35, 0.20);
    --doly-form-text-color: #232323;
}

div.uagb-block-854d1d35 div.uagb-container-inner-blocks-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

div.doly-home-form {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

div.doly-home-form-header {
    border: 2px solid var(--doly-form-accent-color);
    background-color: #FFF;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.doly-home-form form {
    border: 2px solid var(--doly-form-accent-color);
    padding: 10px;
    background-color: #FFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.doly-home-form form input {
    padding: 8px;
    font-size: 16px;
    width: 60%;
    border: none;
    color: var(--doly-form-text-color);
}

div.doly-home-form form input:focus {
    outline: none;
    border: none;
}

div.doly-home-form form input::placeholder {
    color: var(--doly-form-white-color);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

div.doly-home-form a.is_current_page {
    background: var(--doly-form-text-color);
    color: #EEEEEE;
}

div.doly-home-form a {
    width: 33%;
    background-color: transparent;
    color: #d0d0d0;
    border: none;
    padding: 4px;
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

div.doly-home-form form button {
    background: var(--doly-form-text-color);
    color: #EEEEEE;
    border: 2px solid var(--doly-form-text-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
    font-family: "Inter", sans-serif;

}

div.doly-home-form form button:hover {
    background: var(--doly-form-accent-color);
    border: 2px solid var(--doly-form-accent-color);
    color: var(--doly-form-text-color);
}

div.doly-home-form a:hover {
    color: #EEEEEE;
    background-color: var(--doly-form-text-color);
}

/* TABLET RESPONSIVE */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    div.doly-home-form {
        width: 70% !important;
    }
}

/* MOBILE RESPONSIVE */
@media only screen and (min-width: 0px) and (max-width: 768px) {
    div.doly-home-form {
        width: 100% !important;
    }

    div.doly-home-form form input {
        width: 70%;
    }

    div.doly-home-form form input::placeholder {
        font-size: 12px;
    }
}

