body {
    background-color: #f4f7fa;
    font-family: inherit;
}

.custom-input:focus {
    border-color: inherit;
    box-shadow: none;
}

.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.my-element {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.my-element::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #053c61, #d1b027);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
    font-size: 12px;
    color: #6c757d;
}

.progress-bar-custom {
    height: 4px;
    background-color: #053c61;
}

.hidden-step {
    display: none;
}

.input-group-text {
    color: #053c61;
}

.upload-box {
    border: 2px dashed #ced4da;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.upload-box:hover {
    border-color: #053c61;
    background-color: #f0f4ff;
}

.step-complete {
    text-align: center;
    padding: 40px 20px;
}

.btn-primary-custom {
    background-color: #053c61;
    border-color: #053c61;
    color: #fff;
}

.btn-primary-custom:hover {
    background-color: #d1b027;
    border-color: #d1b027;
    color: #fff;
}

.custom-border {
    border-left: 4px solid #053c61;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.required-star {
    font-size: 0.5rem;
    vertical-align: super;
    margin-left: 2px;
}
