
h5.custom-color {
    color: #ff0000;
    }
label {
    margin-right: 15px;
    color: blue;
}
/* label { color: blue; } */
input { border: 1px solid #ADD8E6; }
.text-blue {
      color: blue;
  }

.section-box {
    border: 1px solid #000;
    padding: 10px;
    background-color: #f9f9f9;
}

.section-title {
    color: blue;
    margin: 0;
}
  
/* Style for submit buttons */
.btn-primary {
    background-color: #0066cc;
    border-color: #004d99;
}
.btn-primary:hover {
    background-color: #004d99;
    border-color: #003366;
}

/* Style for form inputs */
.form-control {
    border-color: #ccc;
    border-radius: 4px;
}
.form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

/* Center align headers */
h5 {
    text-align: center;
    color: #333;
}

/* Add spacing to rows */
.row.g-2 {
    margin-bottom: 10px;
}

/* Custom error styling */
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

<style>
    .msg-error {
        color: #dc3545 !important;
        font-weight: bold;
        font-size: 1.2rem;
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        border-radius: .375rem;
        padding: .75rem 1.25rem;
    }
</style>
