.auth-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        /* url("https://source.unsplash.com/1920x1080/?nature,water") no-repeat
            center center; */
            url("/assets/images/background/OIG3.jpeg") no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.auth-box {
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.auth-box:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    * {
        font-size: 14px;
    }
}

.select2-container--default .select2-selection--single {
    height: 38px !important;
    padding: 5px 10px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}

/* Progress bar animation */
.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

/* Button group styling */
.btn-group-toggle .btn {
    cursor: pointer;
}

.btn-group-toggle .btn.active {
    background-color: #007bff;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-form-label {
        text-align: left !important;
    }
}