.upload-area {
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
}

.upload-area-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3125rem;
}

.upload-area-paragraph {
    font-size: 1rem;
    margin-top: 0;
}

.upload-area-drop-zone {
    position: relative;
    height: 8.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #2E4765;
    border-radius: 15px;
    margin-top: 2.1875rem;
    cursor: pointer;
    transition: border-color 300ms ease-in-out;
}

.custom-file-label,
.custom-file-input {
    height: 100px;
    z-index: 999;
}

.custom-file-label::after {
    color: #ffffff;
    background-color: #2E4765;
    line-height: 3;
    height: 50px;
}

.custom-file-input:focus~.custom-file-label {
    border-color: none;
    box-shadow: none;
    outline: none;
}

.custom-file-input:focus {
    border: 1px solid #ced4da !important;
    outline: none !important;
}

.drop-zone-icon {
    display: flex;
    font-size: 2.75rem;
    color: #2E4765;
    transition: opacity 300ms ease-in-out;
    margin-top: 0px;
    position: absolute;
    top: 15px;
}

.drop-zone-paragraph {
    font-size: 0.9375rem;
    margin: 0;
    margin-top: 15px;
    transition: opacity 300ms ease-in-out;
    position: absolute;
    top: 50px;
    opacity: 0.7;
}

.cfUpload label {
    margin-bottom: 0 !important;
    font-weight: 500 !important;
    height: calc(2.25rem + 2px) !important;
}

.cfUpload label::after {
    height: calc(2.25rem + 2px);
    line-height: 1.5;
}

.cfUpload input {
    height: calc(2.25rem + 2px);
}