/*# sourceMappingURL=custom.min.css.map */
@media (max-width: 576px) {
    .add-fleet {
        margin-right: 0 !important;
    }
    .imgforum {
        margin-bottom: 2rem;
    }
    .form-check-inline {
        margin-left: 0.8rem;
    }
    .forminlinetext {
        margin-left: 1rem;
    }
    .nextpage {
        width: 100% !important;
        /* margin-left: .5rem !important; */
    }

    .nextpage21 {
        width: 100% !important;
    }
    .nextpage31 {
        width: 100% !important;
        /* margin-left:!important; */
    }
    .nextpage41 {
        width: 350px !important;
    }
    .selectoption {
        font-size: 0.8rem !important;
    }
    .nextpage5 {
        width: 350px !important;
    }

    .nextpage6 {
        width: 350px !important;
    }

    .nextpage7 {
        width: 350px !important;
    }
    .nextpage8 {
        width: 350px !important;
    }
    .nextpage9 {
        width: 350px !important;
    }
    .registerdocument {
        margin: 0 !important;
    }
    .nextpage10 {
        width: 350px !important;
    }
    .nextpage11 {
        width: 350px !important;
    }
    .nextpage12 {
        width: 350px !important;
    }

    .nextpage13 {
        width: 350px !important;
    }
    .nextpage14 {
        width: 350px !important;

        /*  */
    }

    .nextpage15 {
        width: 350px !important;
    }
    .nextpage16 {
        width: 350px !important;
    }
    .nextpage17 {
        width: 350px !important;
    }
    /*  */

    .nextpage18 {
        width: 350px !important;
    }
    .nextpage16 {
        width: 350px !important;
    }
    .nextpage16 {
        width: 350px !important;
    }
    .nextpage16 {
        width: 350px !important;
    }
    .nextpage16 {
        width: 350px !important;
    }
}

@media (max-width: 768px) {
    /* For tablets and smaller screens */
    .form-check {
        flex: 1 1 33%; /* Each checkbox takes 33% of the row */
    }
    .form-check-inline {
        margin-left: 0.8rem;
    }
    .forminlinetext {
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {
    /* For mobile devices */
    .form-check {
        flex: 1 1 100%; /* Each checkbox will take up the full width (stacked vertically) */
    }
}

.formborder select {
    border: none;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.template-color {
    color: #0d3e79 !important;
}
.template-bgcolor {
    background: #0d3e79 !important;
}
/* ===== Auth Page Glassmorphism (Light Background) ===== */

.auth-page-wrapper {
    overflow: hidden;
    height: 100vh;
    background-image: linear-gradient(
        to right top,
        #ffffff,
        #f5f8ff,
        #eef3ff,
        #e7eeff,
        #e0e9ff
    );
}

/* Glass Card */
.auth-page-wrapper .card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    border: 1px solid rgba(13, 62, 121, 0.15);
    box-shadow: 0 12px 40px rgba(13, 62, 121, 0.15);
}

/* Glass highlight */
.auth-page-wrapper .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1)
    );
    pointer-events: none;
}

/* Text */
.auth-page-wrapper .card-body {
    color: #1f2d3d;
}

.auth-page-wrapper .form-label {
    color: #1f2d3d;
}

.auth-page-wrapper p,
.auth-page-wrapper span {
    color: #4a5568;
}

/* Inputs */
.auth-page-wrapper .form-control {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(13, 62, 121, 0.25);
    color: #1f2d3d;
}

.auth-page-wrapper .form-control::placeholder {
    color: #7a8aa0;
}

.auth-page-wrapper .form-control:focus {
    border-color: #0d3e79;
    box-shadow: 0 0 0 0.15rem rgba(13, 62, 121, 0.25);
}

/* Links */
.auth-page-wrapper a {
    color: #0d3e79 !important;
}

/* Button */
.auth-page-wrapper .btn-primary {
    background: linear-gradient(135deg, #0d3e79, #4d86d4);
    border: none;
    box-shadow: 0 6px 18px rgba(13, 62, 121, 0.35);
}


/* ===== Generic Custom Form Controls (Bootstrap Override) ===== */

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2d3d;
    margin-bottom: 6px;
}

.form-control {
    height: 48px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;

    background-color: #ffffff;
    border: 1.5px solid #d0d7e2;
    color: #1f2d3d;

    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

/* Placeholder */
.form-control::placeholder {
    color: #8a98ad;
    font-weight: 400;
}

/* Focus */
.form-control:focus {
    background-color: #ffffff;
    border-color: #0D3E79;
    box-shadow: 0 0 0 3px rgba(13, 62, 121, 0.18);
    outline: none;
}

/* Hover */
.form-control:hover {
    border-color: #9aa7bc;
}

/* Disabled */
.form-control:disabled,
.form-control[readonly] {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #94a3b8;
}

/* Validation states */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15);
}

/* Textarea */
textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

/* Select */
select.form-control {
    cursor: pointer;
}

/* Input group (password eye, icons) */
.input-group .form-control {
    border-right: 0;
}

.input-group-text {
    background-color: #ffffff;
    border: 1.5px solid #d0d7e2;
    border-left: 0;
    border-radius: 0 10px 10px 0;
    color: #64748b;
}

/* Error text */
.text-danger {
    font-size: 12px;
    margin-top: 4px;
}
.text-primary {
  color: #0D3E79 !important;
}


/* ===== Generic Custom Buttons (Bootstrap Override) ===== */

.btn {
    height: 48px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    transition: all 0.25s ease;
}

/* Primary */
.btn-primary {
    background: linear-gradient(135deg, #0D3E79, #4D86D4);
    border: none;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(13, 62, 121, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #0b3566, #3a6fb3);
    box-shadow: 0 10px 28px rgba(13, 62, 121, 0.45);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(13, 62, 121, 0.3);
}

/* Secondary */
.btn-secondary {
    background-color: #f1f5f9;
    border: 1.5px solid #d0d7e2;
    color: #1f2d3d;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

/* Outline Primary */
.btn-outline-primary {
    background-color: transparent;
    border: 1.5px solid #0D3E79;
    color: #0D3E79;
}

.btn-outline-primary:hover {
    background-color: rgba(13, 62, 121, 0.08);
}

/* Success */
.btn-success {
    background: linear-gradient(135deg, #198754, #3cb371);
    border: none;
    color: #ffffff;
}

.btn-success:hover {
    box-shadow: 0 8px 22px rgba(25, 135, 84, 0.35);
}

/* Danger */
.btn-danger {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    border: none;
    color: #ffffff;
}

.btn-danger:hover {
    box-shadow: 0 8px 22px rgba(220, 53, 69, 0.35);
}

/* Disabled */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    pointer-events: none;
    box-shadow: none;
}

/* Button sizes */
.btn-sm {
    height: 36px;
    font-size: 13px;
    padding: 0 14px;
}

.btn-lg {
    height: 56px;
    font-size: 16px;
    padding: 0 28px;
}

