.contact-form {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    height: 100%;
}

.form-container {
    text-decoration-color: black;
    background-image: url(/static/assets-v2.0/img/skill-back-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* max-width: 500px; */
}

form#businessForm {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: 50px auto;
}

.form-container h1 {
    font-size: 30px;
}

.form-group {
    margin-bottom: 30px;
    margin-right: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
}

.form-group select,
.form-group textarea,
.form-group button {
    width: 100%;
    font-size: 15px;
    border: 1px solid #ccc;
    color: #fff;
    background: transparent;
    padding: 10px;
}

.form-group select option {
    color: #000000;
}

.form-group input {
    border-bottom: 1px solid #ccc;
    width: 100%;
    font-size: 16px;
    color: #fff;
    background: transparent;
    padding: 10px 10px;
}

.contact_info a {
    color: #000;
    font-size: 18px;
}

input::placeholder {
    color: #fff;
    opacity: 0.5;
}

.form-group button {
    background-color: #3763f4;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: fit-content;
    padding: 10px 45px;
}

.form-group button:hover {
    background-color: #363636;
}

.form-step {
    /* min-height: 90vh; */
    align-items: center;
    padding: 50px 0px;
    box-sizing: border-box;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* .form-step.active {
    display: flex;
    transform: translateY(0);
    align-content: center;
} */
input {
    border: none;
    outline: none;
    padding: 10px;
}

input:focus {
    border-bottom: 1px solid #fff;
    transition: 0.2s;
}

.form-step.active {
    display: block;
    margin-top: 90px;
    opacity: 1;
    transform: translateY(0);
}

.slide-out {
    opacity: 0;
    transform: translateY(-20px);
}

.slide-in {
    opacity: 1;
    transform: translateY(0);
}

/* Container for the entire checkbox list */
/* Container for the checkbox list */
#custom-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 260px;
}

/* Styling for each checkbox wrapper */
.custom-checkbox {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #b0a8b9;
    border-radius: 8px;
    background-color: #e6e2e7;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    justify-content: space-between;
    position: relative;
}

/* Hide the actual checkbox */
.custom-checkbox input {
    display: none;
}

/* Label styling */
.custom-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    color: #3b313f;
    position: relative;
}

/* Alphabet box */
.checkbox-box {
    width: 28px;
    height: 28px;
    border: 2px solid #3b313f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

/* Tick mark - Initially hidden */
.tick-mark {
    position: absolute;
    right: 16px;
    font-size: 18px;
    color: transparent;
    /* Initially hidden */
    transition: all 0.3s ease-in-out;
}

/* When checkbox is checked, show tick */
.custom-checkbox input:checked + .custom-checkbox-label .tick-mark {
    color: #3b313f;
}

/* Darken letter when checked */
.custom-checkbox input:checked + .custom-checkbox-label .checkbox-box {
    background-color: #3b313f;
    color: #fff;
}

/* Change background when checked */
.custom-checkbox input:checked + .custom-checkbox-label {
    background-color: #b2a5b6;
    border-color: #3b313f;
}

