@font-face {
    font-family: 'Montserrat-Regular';
    src: url("../assets/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url("../assets/fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url("../assets/fonts/Montserrat-Light.ttf") format("truetype");
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url("../assets/fonts/Montserrat-Bold.ttf") format("truetype");
}

@font-face {
    font-family: 'Montserrat-Black';
    src: url("../assets/fonts/Montserrat-Black.ttf") format("truetype");
}



/* General container styling */
body {
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Logo Styling */
.logo-img {
    max-width: 80px;
    height: auto;
}

/* Card (form wrapper) */
.card {
    border-radius: 16px;
    border: none;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Titles and subtitles */
h3 {
    font-weight: 700;
    color: #0d6efd; /* Bootstrap primary color */
}

.breadcrumb {
    margin-top: 20px; 
}

.subtitle,
.text-muted {
    font-size: 0.95rem;
    color: #ea9f48 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-family: "Montserrat-Bold";
    font-size: 15px;
    padding-bottom: 8px;
    padding-top: 8px;
}

/* Form elements */
.form-label {
    font-weight: 600;
    margin-bottom: 4px;
    color: #212529;
    font-family: "Montserrat-Bold";
}

.form-control,
.form-select {
    font-family: "Montserrat-Bold";
    border-radius: 8px;
    padding: 10px;
    font-size: 0.95rem;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
    }

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    }

.btn-success {
    background-color: #198754;
    border: none;
}

    .btn-success:hover {
        background-color: #157347;
        box-shadow: 0 4px 12px rgba(25, 135, 84, 0.2);
    }

.inward-header {
    background-color: #039be5; /* blue color */
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    font-style: italic;
    width: 100%;
    margin-top: 15px;
}
/* Link styling */
a {
    color: #0d6efd;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Form message / link text */
.text-center a {
    font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .logo-img {
        max-width: 60px;
    }

    .card {
        padding: 20px 15px;
    }

    .form-label,
    .form-control,
    .form-select {
        font-size: 0.9rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

.text-primary {
    color: rgb(63, 81, 181) !important;
}
h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-family: "Montserrat-Bold";
    text-align: center;
    margin-bottom: 20px;
    color: rgb(63, 81, 181);
    letter-spacing: 2px;
    font-weight: 800;
}

h4 {
    color: #ea9f48 !important;
    font-weight: 800;
    text-transform: uppercase;
    font-family: "Montserrat-Bold";
    font-size: 15px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    padding-bottom: 8px;
    padding-top: 8px;
}