/* General Utility Classes */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400&display=swap');

body {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 400;
    color: #081839; /* Default text color */
}

.min-vh-100 {
    min-height: calc(100vh - 2px) !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.custom-bg {
    background-image: url("/static/img/brand/bg_final.f07903d7afb7.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Prevent flickering */
    background-repeat: no-repeat;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

/* Styling for the Card and Content */
.bg-white {
    background-color: #fff !important;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 0.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.px-sm-5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

@media (min-width: 576px) {
    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.text-center {
    text-align: center !important;
}

/* Button and Links */
.d-grid {
    display: grid !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.btn-gray-800 {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-gray-800:hover {
    color: #343a40;
    background-color: #fff;
    border-color: #343a40;
}

a {
    color: #44B4B4; /* Link color */
    text-decoration: none;
}

a:hover {
    color: #36a0a0; /* Slightly darker on hover */
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Form Control */
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Noto Sans Arabic', sans-serif;
    color: #081839; /* Ensure consistent text color */
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #081839;
    background-color: #fff;
    border-color: #44B4B4;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(38, 143, 255, 0.25);
}

/* Asterisk Styling */
.asteriskField {
    color: #980065;
}

form i {
    position: absolute;
    left: 20px;
    bottom: 6px;
    color: #44B4B4;
    cursor: pointer;
}

.password-with-help i {
    position: absolute;
    left: 20px;
    top: 41px; /* Adjust to move it above the help text */
    color: #44B4B4;
    cursor: pointer;
}