.form {
    display: flex;
    flex-direction: column;
    min-width: 228px;
}

.form-header {
    margin-bottom: 25px;
}

.form-title {
    font-size: 32px;
}

.form-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
}

.form-component {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.form-component--stack {
    flex-direction: column;
    align-items: start;
}

.form-component > * {
    flex: 1 1;
}

.form-component--stack > * {
    width: 100%;
}

.form-component--uneditable {
    pointer-events: none;
}

.form-component--uneditable input,
.form-component--uneditable textarea,
.form-component--uneditable select {
    opacity: 0.6;
}

.form-component label {
    font-size: 20px;
}

.form-component input,
.form-component textarea,
.form-component select {
    font-size: 14px;
    font-family: 'Roboto', uppercase, sans-serif;
    border: 2px solid rgba(28, 30, 41, 0.50);
    padding: 6px;
}

.form-component textarea {
    min-height: 100px;
    resize: none;
}

.form-component input[type="file"] {
    border: 0;
    width: 100%;
}

.form-component input[type="file"]::file-selector-button {
    background: #fff url("/images/attach-file-9a3be1a19835da643b3f0cee69f724ec.svg") 10px center no-repeat;
    border: 0;
    border-radius: 3px;
    padding: 10px 15px 10px 35px;
    margin-right: 20px;
    transition: .5s;
    cursor: pointer;
}

.file-input-wrapper {
    border: 2px solid rgba(28, 30, 41, 0.5);
    cursor: pointer;
    transition: .5s;
}

.file-input-wrapper:hover {
    background: rgba(118, 118, 118, 0.1);
}

.input-file-list:empty {
    display: none;
}

.input-file-list {
    margin: 0 6px 6px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    border: 1px dotted #1C1E29;
    background: #fff;
}

.input-file-list-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.input-file-list-item span {
    font-size: 14px;
}

.input-file-list-item a {
    background: url("/images/cross-red-6f14ee80c89dfada36a00c652d92269f.svg") center center no-repeat;
    background-size: 14px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}