.contact-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-label {
    color: #174ea6;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.contact-form-input,
.contact-form-textarea {
    background: rgb(255 255 255 / 70%);
    border: 2px solid rgb(119 199 255 / 54%);
    border-radius: 12px;
    box-sizing: border-box;
    color: #2f5d6b;
    display: block;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    padding: 10px;
    width: 100%;
}

.contact-form-textarea,
.feedback-textarea {
    min-height: 130px;
    resize: vertical;
}

.feedback-textarea {
    background: rgb(255 255 255 / 70%);
    border: 2px solid rgb(119 199 255 / 54%);
    border-radius: 12px;
    box-sizing: border-box;
    color: #2f5d6b;
    display: block;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    padding: 10px;
    width: 100%;
}

.auth-email-trigger {
    align-items: center;
    border-top: 1px solid rgb(119 199 255 / 36%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    text-align: center;
}

.auth-email-trigger p {
    color: #2f5d6b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.auth-hidden {
    display: none !important;
}

.auth-form {
    border-top: 1px solid rgb(119 199 255 / 36%);
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.auth-form--open {
    display: flex;
}

.auth-form-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-form-row span {
    color: #174ea6;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.auth-form-input {
    background: rgb(255 255 255 / 70%);
    border: 2px solid rgb(119 199 255 / 54%);
    border-radius: 12px;
    box-sizing: border-box;
    color: #2f5d6b;
    display: block;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    padding: 10px;
    width: 100%;
}

.auth-form-input:focus {
    border-color: #174ea6;
    box-shadow: 0 0 0 2px rgb(23 78 166 / 16%);
    outline: none;
}
