/* Primary color */
:root {
    --bs-primary: #F7941D; 
    --bs-primary-hover: #E6821B; 
    --bs-primary-active: #CC7400; 
    --bs-primary-focus: rgba(247, 148, 29, 0.5); 
}

body {
    background-color: #F8F9FA;
}

/* Button-primary */
.btn-primary:active,
.btn-primary:active:focus {
    background-color: var(--bs-primary-active) !important;
    border-color: var(--bs-primary-active) !important;
    box-shadow: none !important;
}
.btn-primary:disabled {
    background-color: #FBCB9C !important; 
    border-color: #FBCB9C !important;
    cursor: not-allowed;
} 

/* Card */
.card {
    border-color: transparent;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Alert */
.alert {
    border-color: transparent;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.head-logo{
    height: 2.5rem;
    width: auto;
}

.globe{
    height: 1.5rem;
    width: auto;
    /* margin-top: .5rem; */
    margin-right: .2rem;
}

/* nav select {
    padding: 0.3rem;
    padding-right: 3rem;
    border-radius: .4rem;
} */

/* Should be removed */
nav {
    background-color: #D9D9D9;
}

/* nav{
    background-color: #D9D9D9;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
} */

/* header{
    place-items: center;
}
header img {
    height: 5rem;
    width: auto;
} */

/* form label, form input, form select,
form .text-muted{
    margin-left: 2rem;
    margin-right: 2rem;
}    */

/* form {
    background-color: #D9D9D9;
    border-radius: .4rem;
    padding: 2rem;
    display: grid;
    grid-column: 3;
} */

/* .password-toggle-icon {
    position: absolute;
    right: 16rem;
    bottom: 0.1rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
} */

/* .password-toggle-icon {
    position: absolute;
    /* transform: translateY(-100%); */
    /* bottom: 5rem; */
    /* right: 14rem; */
    /* cursor: pointer; */
  /* } */
  /*
  .password-toggle-icon i {
    font-size: 18px;
    line-height: 1;
    color: #333;
    transition: color 0.3s ease-in-out;
  } */

  /* .password-toggle-icon i:hover {
    color: #000;
  } */


.custom-width {
    max-width: 450px;
}

.justify-items-center {
    justify-items: center !important;
    width: inherit;
}
a {
    color: #000;
    font-weight: bolder;
    text-decoration: none;
}

a:hover{
    color: crimson;
    transition: color 0.3s ease-in-out;
}

/* .form-group{
    margin-right: 4rem;
} */

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
    backdrop-filter: blur(5px); /* Blurred background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Ensure it appears above other content */
    pointer-events: none; /* Ignore clicks by default */
    visibility: hidden; /* Hide initially */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.loader-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; /* Block clicks when active */
}
.spinner-border {
    width: 4rem;
    height: 4rem;
    border-width: 5px;
}

.modal-text {
    text-align: justify;
    font-size: smaller;
}

.font-smaller {
    font-size: smaller;
}