body {
    background-color: #ffffff;
}
text-left {
    color:#5b5b5b;
}
h2 {
    font-weight: 600;
    color:#5b5b5b;
    font-size: 1.2rem;
}

.form-label {
    font-weight: 500;
    color: #5b5b5b;
}

.form-control,
.form-select {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.form-control:focus {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-color: #555;
}

.btn-outline-dark {
    color: #333;
    border-color: #333;
}

.btn-outline-dark:hover {
    background-color: #333;
    color: #fff;
}

.thick-line {
    border-top: 3px solid #5b5b5b;
    margin-top: 1rem;
    margin-bottom: 1rem;
    opacity: 1;
}

.invalid-feedback {
    display: block;
    color: #d9534f;
    font-size: 0.875rem;
}

.auth-form {
    max-width: 100%;
}


@media (min-width: 768px) {
    .auth-form {
        max-width: 700px;
    }
}
/* Apply similar styles to select2 dropdown to match form fields */
.select2-container--default .select2-selection--single {

    border: 1px solid #ced4da; /* Match form field border */
    height: calc(2.25rem + 2px); /* Match the height of other form fields */
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Align the dropdown arrow with the text */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 10px;
    position: absolute;

}

.select2-container {
        width: 100% !important;
    }

