.appointment {
    position: relative;
    width: 100%;
}

.appointment .appointment-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.appointment .appointment-wrapper .appointment-content {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.appointment .appointment-wrapper .appointment-content:nth-child(1) {
    padding: 50px 40px;
    z-index: 9;
    position: relative;
}

.appointment .appointment-wrapper .appointment-content form {
    margin-top: 30px;
}



.form-control-wrap {
    position: relative;
}

.appointment .appointment-wrapper .appointment-content form input,
.appointment .appointment-wrapper .appointment-content form textarea {
    padding: 10px;
    border: 1px solid #dedede;
    background-color: #fff;
    font-size: 15px;
    width: 100%;
    color: #000;
    outline: none;
}

.appointment .appointment-wrapper .appointment-content form input {
    border-radius: 0;
    height: 45px;
}

.appointment .appointment-wrapper .appointment-content form textarea {
    border-radius: 0;
    height: 100px;
    resize: vertical;
}

.appointment .form-submit input[type="text"],
.appointment .form-submit input[type="email"],
.appointment .form-submit input[type="tel"],
.appointment .form-submit textarea {
    font-weight: 400;
    color: #000;
}

.appointment .appointment-wrapper .appointment-content .form-submit .submitb {
    color: rgb(139, 111, 78);
    background-color: transparent;
    display: inline-block;
    margin-bottom: 0px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid rgb(139, 111, 78);
    height: 45px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0px;
    width: 100%;
}

.appointment .appointment-wrapper .appointment-content .form-submit .submitb:focus {
    outline: none;
    box-shadow: none;
    background-color: rgb(139, 111, 78);
    color: rgb(255, 255, 255);
}

.appointment .appointment-wrapper .appointment-content .form-submit .submitb:hover {
    background-color: rgb(139, 111, 78);
    color: rgb(255, 255, 255);
}

/* Floating label styles */
.floating-label {
    position: relative;
    margin-bottom: 25px;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 14px 10px;
    border: 1px solid #dedede;
    border-radius: 0;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    outline: none;
}

.floating-label label {
    position: absolute;
    top: 14px;
    left: 12px;
    color: #888;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
    background: #fff;
    padding: 0 5px;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 8px;
    font-size: 12px;
    color: #000;
}

.floating-label input:focus,
.floating-label textarea:focus {
    border-color: #000;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .appointment .appointment-wrapper .appointment-content:nth-child(1) {
        padding: 15px 20px;
    }
}

@media (max-width: 991px) {
    .appointment .appointment-wrapper .appointment-content:nth-child(1) {
        padding: 50px 30px;
    }

    .appointment:after {
        width: 100%;
    }

    .appointment .appointment-wrapper .appointment-content {
        width: 100%;
    }

    .button.brxe-text-appointment-content-link {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .appointment .appointment-wrapper .appointment-content:nth-child(1) {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    /* Add mobile-specific tweaks here if needed */
}
