.title {
    color: black;
    margin-top: 0px;
    margin-bottom: 20px;
    font-weight: bold;
    width: 100%;
    justify-content: center;
    display: flex;
}

main {
    padding: 40px 10%;
}

.flex {
    display: flex;
    width: 100%;
    gap: 10px;
}

@media (max-width: 480px) {
    .flex {
        display: flex;
        flex-direction: column;
    }
}

.space {
    height: 50px;
}

.big-space {
    height: 200px;
}

.btn {
    background-color: #d80027;
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    border: none;
    transition: all 0.3s;
    font-size: medium;
    font-weight: bold;
    cursor: pointer;
}

.right {
    display: flex;
    justify-content: end;
    width: 100%;
}

.btn:hover {
    scale: 1.05;
    background-color: #222222;
}

.form-group {
    flex: 1;
    color: #000000;
    display: flex;
    flex-direction: column;

    span {
        color: #d80027;
        margin-right: 5px;
    }

    input {
        height: 55px;
        border-radius: 7px;
        border: 1px solid rgb(85, 85, 85, 0.5);
        padding: 0 20px;
        font-size: medium;
        font-family: inherit;
        margin: 10px 0;
    }

    select {
        font-family: inherit;
        height: 55px;
        border-radius: 7px;
        border: 1px solid rgb(85, 85, 85, 0.5);
        padding: 0 20px;
        font-size: medium;
        margin: 10px 0;
    }

    /*drag and drop*/

    .file-upload-container {
        width: 100%;
        margin: 10px 0;
        padding: 20px 0;
        border: 2px dashed #ccc;
        border-radius: 8px;
        text-align: center;
        color: #666;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .file-upload-container.highlight {
        border-color: #666;
        background-color: #f8f8f8;
    }

    .file-upload-container.has-file {
        background-color: #f1f8e9;
    }

    .file-icon {
        opacity: 0.5;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
    }

    .file-icon svg {
        width: 48px;
        height: 48px;
    }

    .file-icon .default-icon {
        display: block;
    }

    .file-icon .success-icon {
        display: none;
    }

    .file-icon.file-selected .default-icon {
        display: none;
    }

    .file-icon.file-selected .success-icon {
        display: block;
    }

    .file-input {
        display: none;
    }

    .drag-text {
        margin: 15px 0;
    }

    .file-name {
        font-weight: bold;
        word-break: break-all;
        margin-top: 10px;
    }

    .choose-link {
        text-decoration: underline;
        color: #000000;
        cursor: pointer;
        transition: all 0.3s;
    }

    .choose-link:hover {
        scale: 1.1;
    }
}

/*progress bar*/

.progress-bar {
    height: 100%;
    width: var(--progress);
    background-color: #bb1a21;
    border-radius: 10px;
}

.progress-text {
    color: #bb1a21;
    font-size: 12px;
    font-weight: bold;
}

.flex1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.progress-container {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}