.brand-wrapper h2 {
    font-weight: 700;
    font-size: 1.75rem;
}

p {
    display: block;
    unicode-bidi: isolate;
    color: #5f6b77;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
}

.alert-danger {
    color: #c86e56;
    background-color: #fee7e1 !important;
    border-color: #fdd0c4;
}

.alert-success {
    color: #0fb294;
    background-color: #d0f8f1;
    border-color: #a1f2e3;
}

.static-feedback {
    color: #95a4b5;
    margin: 4px 0px 16px;
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px;
    box-sizing: border-box;
    display: block;
    text-size-adjust: 100%;
}

@media (min-width: 1400px) {
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
}

@media (min-width: 1400px) {
    .col-xxl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
}

.icon-circle {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff; /* Light background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
}

.icon-circle i {
    font-size: 25px; /* Icon size */
    color: #fd7e14;  /* Icon color */
}

.animated-check {
    font-size: 25px; /* Icon size */
    color: #fd7e14;  /* Icon color */
    opacity: 0;
    transform: scale(0.5);
    animation: scaleUp 0.6s ease-out forwards;
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

input.is-invalid {
    background-image: none !important; /* Remove the red exclamation icon */
    border-color: #dc3545 !important;
}
.password-toggle-icon {
    position: absolute;
    top: 40px;
    right: 12px;
    color: #999;
    z-index: 2;
    cursor: pointer;
    font-size: 0.60rem;
}
  
.password-toggle-icon:hover {
    color: #333;
}