.greys-of-wrapper {
    width: 100%;
    position: relative;
}

.greys-of-form-wrapper h2,
.greys-of-thankyou h2 {
    margin: 0 0 0.25rem;
}

.greys-of-subtitle {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: .8;
}

.greys-of-row {
    display: flex;
    gap: 0.75rem;
}

.greys-of-row .greys-of-field {
    flex: 1;
}

.greys-of-field {
    margin-bottom: 0.75rem;
}

.greys-of-field input[type="text"],
.greys-of-field input[type="email"],
.greys-of-field input[type="tel"],
.greys-of-field textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background: #eff1f9;
    font-size: 14px;
    box-sizing: border-box;
}

.greys-of-field input[type="text"]::placeholder,
.greys-of-field input[type="email"]::placeholder,
.greys-of-field input[type="tel"]::placeholder,
.greys-of-field textarea::placeholder {
    color: red;
}

.greys-of-field textarea {
    min-height: 120px;
    resize: vertical;
}

.greys-of-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1b1e3f;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    background: #ffffff;
    box-sizing: border-box;
    border-radius: 2px;
}

.greys-of-file-label span {
    margin-left: 6px;
}

.greys-of-file-input {
    display: none;
}

.greys-of-file-info {
    margin-top: 4px;
    font-size: 11px;
    opacity: .7;
}

.greys-of-submit {
    display: inline-block;
    float: right;
    padding: 12px 3rem;
    border-radius: 2px;
    background: #1b1e3f;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.greys-of-status {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.greys-of-status.greys-of-error {
    color: #b91c1c;
}

.greys-of-thankyou {
    display: none;
}

.greys-of-thankyou p {
    margin: 0 0 0.5rem;
    font-size: 14px;
}

.greys-of-thankyou ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
    font-size: 14px;
}

.greys-of-faq-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #1b1e3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}


.greys-of-consent-label {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.4;
}

.greys-of-consent-label input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
}

.greys-of-consent-label a {
    color: #1b1e3f;
    text-decoration: underline;
}


@media (max-width: 768px) {
    .greys-of-row {
        flex-direction: column;
    }
}