.upload-box {
    border: 1px solid #ccc;
    padding: 8px;
    margin: 6px 0;
    position: relative;
}
.progress {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}
.bar {
    height: 100%;
    width: 0%;
    background: cyan;
    transition: width 0.3s linear, background-color 0.3s ease;
}
.bar.done {
    background-color: green;
}
.upload-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    border: none;
    background: red;
    color: #fff;
    cursor: pointer;
}


.cff-form {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.cff-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 20px;
}

.cff-col {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.cff-col-full {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.cff-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.cff-form input[type="text"],
.cff-form input[type="number"],
.cff-form input[type="file"],
.cff-form select,
.cff-form textarea {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.cff-form textarea {
    min-height: 80px;
    resize: vertical;
}

.cff-form button[type="submit"] {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cff-form button[type="submit"]:hover {
    background: #005177;
}

.upload-box {
    border: 1px solid #ccc;
    padding: 8px;
    margin: 6px 0;
    position: relative;
}
.progress {
    height: 6px;
    background: #eee;
    margin-top: 6px;
}
.bar {
    height: 100%;
    width: 0%;
    background: cyan;
    transition: width .3s;
}
.bar.done {
    background: green;
}
.upload-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    border: none;
    background: red;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .cff-col {
        flex: 1 1 100%;
    }
}
