.login{
    margin-top: 1rem !important;
    padding: 6rem;
}
.nav-item .active{
    font-size: larger;
    border-radius: 0 !important;
    color: var(--primary) !important;
    background-color: white !important;
    font-weight: bold;
    border-color: white white var(--primary) white !important;
}
.nav-item .btn-gray{
    font-size: larger;
    border-radius: 0 !important;
    color: var(--secondary) ;
    background-color: white !important;
    font-weight: bold;
    border-color: white white var(--secondary) white ;
}

.btn-gray:not(:disabled):not(.disabled).active:focus, .btn-gray:not(:disabled):not(.disabled):active:focus {
    box-shadow: none;
}
@media (max-width: 991px){
    .login{
        margin-top: 6rem !important;
        padding: 1px;
    }
}
.iti__flag-box, .iti__country-name {
    margin-right: 6px;
    color: black;
    font-weight: 600;
}
.iti{
    width: 100%;
}

.btn-gray:not(:disabled):not(.disabled):active {
    color: var(--primary); 
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 5px !important;
}

.btnGoogle:hover, .btnGoogle:focus {
    opacity: 0.8;
}

/* Main container */
.signin-notice-important, .signup-notice-important {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 11px;
    width: 100%;
    min-width: 280px;
    margin-bottom: 25px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;

    border-radius: 12px;
    border: 2px solid transparent;
    overflow: visible;
}

/* Animated gradient border */
.signin-notice-important::before, .signup-notice-important::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        #F78031,
        #263C7C,
        #F78031
    );
    background-size: 300% 300%;
    animation: borderFlow 4s ease infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

/* Keyframes for smooth animated movement */
@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* Custom class for the title */
.signin-notice-important .alert-title, .signup-notice-important .alert-title {
    width: 100%;
    max-width: 555px;
    height: auto;
    font-style: normal;
    font-weight: 600; /* 600 */
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: var(--secondary);
}

/* Custom class for the message text */
.signin-notice-important .alert-message, .signup-notice-important .alert-message {
    width: 100%;
    max-width: 555px;
    height: auto;
    font-style: normal;
    font-weight: 500; /* 500 */
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #6D6D6D;
}

/* Custom class for the inline clickable link */
.signin-notice-important .alert-link, .signup-notice-important .alert-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    margin-left: 5px;
}

.custom-input-style {
    height: 47px !important;
    border-radius: 10px !important;
    padding-top: 15px !important;
    padding-right: 30px !important;
    padding-bottom: 15px !important;
    padding-left: 30px !important;
    gap: 10px !important;
    /* angle: 0 deg; */
    opacity: 1 !important;
    border-width: 0.5px !important;
    border: 0.5px solid rgba(193, 193, 193, 1) !important;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04) !important;
}

.select2-selection {
    height: 47px !important;
    border-radius: 10px !important;
    opacity: 1 !important;
    border-width: 0.5px !important;
    border: 0.5px solid rgba(193, 193, 193, 1) !important;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    align-items: center !important;
}

.select2-selection__rendered {
    line-height: 47px !important;
    border-radius: 10px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 30px !important;
    padding-right: 15px !important;
    display: flex !important;
    align-items: center !important;
}
.custom-label-style {
    font-family: Inter !important;
    font-weight: 500 !important;
    font-style: Medium !important;
    font-size: 14px !important;
    letter-spacing: 0% !important;
    color: rgba(109, 109, 109, 1) !important;
}

.custom-input-style:focus {
    border-color: var(--primary) !important;
}

.custom-input-style:focus + .custom-label-style {
    color: var(--primary) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 2px !important;
}

.form-header-caption {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.form-select.is-invalid, .form-control.is-invalid {
    border-color: #f84242 !important;
}
