.label {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
}

.label-small {
    font-size: 12px;
    font-weight: 400;
    color: #8e8e93;
}

.required {
    color: #ff3b30;
}

.file-input {
    display: none !important;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    box-sizing: border-box;

    border: 1.5px dashed #c7c7cc;
    border-radius: var(--upload-radius, 10px);

    background: #fafafa;
    color: #6e6e73;

    font-size: 13px;
    font-weight: 500;
    text-align: center;

    cursor: pointer;
    user-select: none;

    transition:
        background-color .15s ease,
        border-color .15s ease,
        color .15s ease;
}

.upload-icon {
    font-size: 34px;
    line-height: 1;
}

.upload-text {
    line-height: 1.3;
    color: #1d1d1f;
}

.upload-help {
    font-size: 12px;
    font-weight: 400;
    color: #8e8e93;
}

.upload-label-photo.upload-label-default {
    width: 240px;
    height: 160px;
}

.upload-label-photo.upload-label-small {
    width: 160px;
    height: 120px;
}

.upload-label-photo.upload-label-large {
    width: 320px;
    height: 200px;
}

.upload-label-id.upload-label-default {
    width: 180px;
    height: 180px;
}

.upload-label-id.upload-label-small {
    width: 140px;
    height: 140px;
}

.upload-label-id.upload-label-large {
    width: 220px;
    height: 220px;
}

.upload-label-file.upload-label-default {
    width: 100%;
    min-height: 140px;
    padding: 18px;
}

.upload-label-file.upload-label-small {
    width: 100%;
    min-height: 100px;
    padding: 14px;
}

.upload-label-file.upload-label-large {
    width: 100%;
    min-height: 200px;
    padding: 24px;
}

.upload-label:hover {
    background: #f5f5f7;
    border-color: #007aff;
    color: #007aff;
}

.upload-label.drag-over {
    background: #e8f2ff;
    border-color: #007aff;
    color: #007aff;
}

.upload-label.disabled {
    background: #f2f2f7;
    border-color: #d1d1d6;
    color: #8e8e93;
    cursor: not-allowed;
    opacity: .7;
}