* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

body.background-colored {
    background-color: #f7fafd;
}

a {
    text-decoration: none;
}

.authentication-section {
    min-height: 100vh;
    background-color: #f7fafd;
}

.authentication-section .auth-header-logo {
    height: 75px;
    width: 75px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.authentication-section .auth-form-container {
    padding: 30px 120px;
}

.authentication-section .auth-form-container .auth-form .form-label,
.modal.demo-request .modal-body .form-label {
    font-size: 16px;
    font-weight: 600;
    color: #6b799c;
}

.authentication-section .auth-form-container .auth-form .form-control {
    background-color: #fff;
    color: #6b799c;
    padding: 22px 25px;
    border-radius: 12px;
    font-size: 15px;
    border: transparent !important;
    box-shadow: #6b799c32 0px 4px 54px;
}
.authentication-section .auth-form-container .auth-form .form-control:focus {
    box-shadow: #6b799c32 0px 4px 54px !important;
}

.form-control:focus {
    box-shadow: none !important;
}

.authentication-section
    .auth-form-container
    .auth-form
    .form-control::placeholder,
.modal.demo-request .modal-body .form-control::placeholder,
.common-form .form-control::placeholder {
    color: #b3baca;
}

.authentication-section .auth-form-container .auth-form .sign-in-btn {
    border-radius: 12px;
    padding: 21px;
    background-color: #061e60;
    color: #fff;
}

.authentication-section .auth-form-container .auth-form .sign-in-btn:hover {
    background-color: #061e60e0;
    color: #fff;
}

.authentication-section .auth-form-container .or-div {
    border-bottom: 1px solid #dee0e7;
}
.authentication-section .auth-form-container .or-div p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f7fafd;
    padding: 5px 15px;
    color: #6b799c;
}

.authentication-section .auth-form-container .btn-white {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: #6b799c32 0px 4px 54px;
    padding: 15px;
}

.map-box {
    background-color: #e4e4e4;
    min-height: 425px;
    border-radius: 15px;
    padding: 20px;
}

.search-location-input {
    max-width: 96%;
    top: 5%;
    left: 2%;
    right: 0;
    text-align: center;
    border: 0;
    padding: 2px 10px;
}
.confirm-btn {
    border-radius: 12px;
    padding: 13px 48px;
    background-color: #061e60;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 29%;
    width: 454px;
}
.confirm-btn:hover {
    background-color: #061e60e0;
    color: #fff;
}

.guest-capacity,
.category-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.category-button {
    background-color: #002f6c;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}
.category-button:hover {
    background-color: #004080;
    color: #ffffff;
}

.category-button span {
    margin: 0 12px;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
}
.form-check .form-check-input {
    float: right;
    font-size: 22px;
    margin-bottom: 0;
}

.schedule-card {
    border-radius: 12px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.time-input {
    background-color: #f1f1f1;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 500;
    min-width: 110px;
}
.form-check-input:checked {
    background-color: #002f6c;
    border-color: #002f6c;
}
.form-check-input:focus {
    box-shadow: none;
}

.step-wizard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 12px 0;
    padding: 0 20px;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 3px;
    background-color: #d1d5db;
    z-index: 0;
}

.step-circle {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: #d1d5db;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.step.active .step-circle {
    background-color: #ffa857;
    color: #fff;
}

.step-label {
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
}

.step.active .step-label {
    color: #111827;
    font-weight: 600;
}

.step:not(:last-child).active::after {
    background-color: #ffa857;
}

.step-wizard-section {
    padding: 50px 10px 0;
}

.category-card .select2-container--default .select2-selection--single{
    border: 0;
}
.category-card .select2-container--default .select2-selection--multiple{
    border: 0;
}

.main-login-section{
    padding-top: 55px;
}


@media (max-width: 768px) {
    .authentication-section .auth-form-container {
        padding: 20px;
    }
    .main-login-section{
        padding-top: 30px;
    }
    .step-wizard-section {
        padding: 50px 0px 0px;
    }
}
@media (max-width: 500px) {
    .step-label {
        font-size: 10px;
    }
    .step-wizard {
        padding: 0 0px;
    }
    .authentication-section .auth-form-container .auth-form .form-control {
        padding: 17px 14px;
    }
}
@media (max-width: 320px) {
    .step-label {
        font-size: 8px;
    }
    .step-circle {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .step-wizard {
        padding: 0 0px;
    }
    .authentication-section .auth-form-container .auth-form .form-control {
        padding: 17px 20px;
    }
   .auth-form-heading {
        font-size: 16px;
    }
    .authentication-section .auth-form-container {
        padding: 10px 8px;
    }
    .guest-capacity, .category-card {
        padding: 20px 10px;
    }
    .authentication-section .auth-form-container .auth-form .sign-in-btn {
        padding: 15px;
    }
    .authentication-section .auth-form-container .auth-form .form-label, .modal.demo-request .modal-body .form-label {
        font-size: 14px;
    }
    .guest-spacing{
        margin-top: 0;
    }
}

