.login-container {
    display: flex;
    min-height: 100vh;
    background-image: url("./../image/login_page.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.login-image {
    display: none;
}

.login-form {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.login-form .card {
    max-width: 520px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .login-form {
        padding: 15px;
    }
    
    .login-form .card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 10px;
    }
}
.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;
}