.login-container {
    display: flex;
    min-height: 100vh;
}

.login-image {
    background-image: url("./../image/login_page.jpg");
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    width: 50%;
}


/* Responsive for mobile */
@media (max-width: 425px) {
    .login-container {
        flex-direction: column-reverse;
    }

    .login-image {
        display: none;
    }

    .login-form {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        padding: 10% !important
        ;
        justify-content: center;
        flex-direction: column;
        background-color: #ffffff;
    }
}

.login-form {
    width: 50%;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff;
}

.card {
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.btn-primary {
    background-color: #156779;
    border-color: #156779;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.text-muted a {
    color: #156779;
    text-decoration: none;
}

.text-muted a:hover {
    text-decoration: underline;
}

.login-header {
    text-align: center;
}

body {
    background-color: #f7f7f7;
}


.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    width: 40px;
    height: 40px;
    background: #dee2e6;
    color: #495057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step.active {
    background: #156779;
    color: #fff;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    margin: auto 0px;
}

.step.active+.step-line {
    background: #156779;
}


.custom-file-label {
    font-size: 14px;
    color: #6c757d;
}

.small-text {
    font-size: 12px;
    color: #6c757d;
}

#backButton {
    background: none;
    border: none;
    color: #156779;
    font-size: 1.25rem;
}

#backButton:hover {
    color: #0c4a57;
}

.selected {
    background-color: #156779 !important;
    color: #fff !important;
}

.preview-box {
    border: 2px dotted gray !important;
    /* Change to the desired color */
}

.preview-box:hover {
    border-color: #156779;
    /* Optional: Change border color on hover */
}

.is-invalid {
    border-color: red;
}

.error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 0.25em;
}


#slots-Monday,
#slots-Tuesday,
#slots-Wednesday,
#slots-Thursday,
#slots-Friday,
#slots-Saturday {
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #555;
}