.form-container {
    border: 1px solid var(--bs-dark);
    padding: 20px;
    border-radius: 10px;
}
.form-container div {
    margin-bottom: 15px;
}
h2.form-title {
    padding: 0 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input::placeholder {
    color: #888E96;
    font-style: italic;
    font-weight: lighter;
}

.privacy-wrapper {
    display: flex;
    gap: 10px;
}

form .form-error-message {
    background-color: #fcc7c7;
    padding: 0 20px;
    border-radius: 5px;
    height: 0;
    opacity: 0;
    overflow-y: hidden;
    transition: all 250ms ease-in-out;
    margin: 0;
    color: firebrick;
    font-size: 1.2rem;
    font-weight: bold;
}

form .form-error-message.visible {
    height: 68px;
    opacity: 1;
    padding: 20px 20px;
    margin-bottom: 20px;
}

.field-wrapper .error-description {
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    height: 0;
    opacity: 0;
    transition: all 250ms ease-in-out;
    color: firebrick;
    font-size: 0.85rem;
    margin: 0;
}

.field-wrapper.error .error-description {
    height: 26px;
    opacity: 1;
}

.field-wrapper.error label{
    color: firebrick;
}
.field-wrapper.error input,
.field-wrapper.error .drop-zone,
.field-wrapper.error select {
    border: 1px solid firebrick;
}
input:focus, select:focus {
    outline: none;
}
.recaptcha-container {
    margin: 0  0 15px 0;
}
button {
    background-color: var(--bs-dark);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:disabled {
    background-color: #ccc;
}

.form-container .actions .note {
    font-size: 0.85em;
    color: #888;
    margin: 0 0 0 15px;
}
.form-container .actions {
    display: flex;
    align-items: center;
}

.drop-zone {
    border: 1px dashed transparent;
    background-color: #F3F6F8;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    color: #888;
    display: flex;
    flex-direction: column;
    transition: all 250ms ease-in-out;
}

.drop-zone .drop-zone-inner {
    display: flex;
    flex-direction: column;
    transition: all 250ms ease-in-out;
}

.drop-zone.empty .drop-zone-inner.file-selected {
    display: none;
}

.drop-zone:not(.empty) .drop-zone-inner.no-file-selected {
    display: none;
}

.drop-zone i.icon {
    font-size: 3.5rem;
    color: var(--bs-dark);
    margin: 0 0 20px 0;
}

.drop-zone span {
    font-style: italic;
}

.drop-zone.drag-over {
    border: 2px dashed #7898AB;
    background-color: #E3E9ED;
    color: #004f9e;
}