


 
.chemical-banner {
    background-color: #2f4f7f; /* Matches the blue tone */
     min-height: 135px;
    padding-top: 15px;
    
}

.banner-title {
    color: #ffffff;
    font-size: 1rem;
  
    margin-bottom: 10px;
    padding-top:5.9rem;
    font-weight: bold;
}

.banner-subtitle {
    color: #e6e6e6;
    font-size: 0.9rem;
    max-width: 900px;
    
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
        padding-top: 10px;
    }

    .banner-subtitle {
        font-size: 0.95rem;
        padding-bottom: 15px;
        line-height: 15px;
        color: white !important;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 1rem;
        padding-top: 5rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
        padding-bottom: 18px;
        line-height: 18px;
        padding-top: 8px;
        color: white !important;
    }
}

/* card css left side */
.page-title {
    color: #8b0000;
    font-weight: 540;
    font-family: "Segoe UI", Arial, sans-serif;
}
                .form-wrapper {
            background: #ffffff;
            border-radius: 8px;
           box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            padding: 30px;
        }
        .form-title {
            color: #b30000;
            font-weight: 600;
            text-align: center;
            margin-bottom: 25px;
        }
        .btn-custom {
            background-color: #1e3a8a;
            color: #ffffff;
            padding: 10px 30px;
            font-family: 'Poppins', sans-serif;
        }
        .btn-custom:hover {
            background-color: #ccc;
            color: black;
        }
        .form-control{
            border-radius: 0px;
        }
         .form-control:focus{
            border-radius: 0px;
            box-shadow: none;
            border: 2px solid black;
        }
  .backBtn {
    color: #fff !important;
    background-color: #87161e !important;
    border: 1px solid #87161e !important;

    padding: 6px 12px;          /* Small button */
    font-size: 14px;
    line-height: 1.2;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    border-radius: 4px;
    white-space: nowrap;
}

/* Icon size */
.backBtn i {
    font-size: 14px;
}

/* Hover */
.backBtn:hover {
    background-color: #6f1118 !important;
    border-color: #6f1118 !important;
}

/* 📱 Mobile responsiveness */
@media (max-width: 576px) {
    .backBtn {
        font-size: 12px;
        padding: 5px 10px;
        margin-bottom: 8px;
    }

    .backBtn i {
        font-size: 12px;
    }

    /* Optional: hide text on very small screens */
    .btn-text {
        display: none;
    }
}

   