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

.form-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-header-title {
    font-family: 'Days One', uppercase, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #35003D;
    width: 100%;
}

.form-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.form-component {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-component--stack {
    flex-direction: row;
}

.form-component label {
    font-weight: 500;
    font-size: 13px;
}

.form-component input,
.form-component select {
    height: 28px;
    min-width: 100px;
    font-weight: 500;
    font-size: 11px;
    border-radius: 0;
    border-width: 1px;
    border-color: #505050;
    padding: 5px;
}

.form-component input:focus,
.form-component select:focus,
.form-component input:focus-within,
.form-component select:focus-within,
.form-component input:focus-visible,
.form-component select:focus-visible {
    outline: none;
}

.form-component input[type="date"]::-webkit-calendar-picker-indicator,
.form-component input[type="month"]::-webkit-calendar-picker-indicator {
    background: url(/images/form/calendar-49d6a122ca6d749cbb8fa956b6af940f.svg) right center no-repeat;
    width: 18px;
}

.form-component select {
    background: #FFFFFF;
    width: max-content;
    appearance: none;
    background: url(/images/form/arrow-down-6ee28bbdb48a96dfbdaf5c4e47c4a3cc.svg) right+4px center no-repeat;
    padding-right: 26px;
}

.form-component select::-ms-expand {
  display: none;
}

.reset-button {
    font-weight: 500;
    font-size: 14px;
    color: #35003D;
    background: url(/images/form/reset-ad7c20f0177c0b29afa0fdd508838ce3.svg) right center no-repeat;
    padding-right: 20px;
    border: 0;
    cursor: pointer;
}

.reset-button:hover {
    opacity: 0.8;
}