form {
    min-width: 250px;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--blue);
    border: solid 2px var(--blueTitle);
}

.form-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    flex-wrap: wrap;
}

.alert-success {
    width: 100%;
}

.alert-success {
    width: 100%;
    text-align: center !important;
    font-weight: bold !important;
    padding-top: 3rem !important;
}

.honeypot-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

label {
    display: inline-block;
    min-width: 100px;
    max-width: 100%;
    white-space: nowrap;
}

input,
textarea {
    flex: 1;
    min-width: 140px;
    max-width: 100%;
    width: 98%;
    padding: 0.25rem;
}

textarea {
    resize: vertical;
    height: 100px;
}

button {
    background: var(--blueLight);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.5s ease;
}

button:hover {
    background: var(--greenDark);
}