form .section {
  margin-bottom: 20px;
}

form .section h2 {
  background-color: #003366;
  color: #fff;
  padding: 10px;
  margin: 0;
}

.form-group {
  margin: 10px 0;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-navigation {
  text-align: right;
  margin-top: 20px;
}

.form-navigation button {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.form-navigation button:hover {
  background-color: #0056b3;
}

.form-card {
    margin-top: 14px;
}

form .card-header {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    padding: 0.5rem 1rem 0.2rem;
}

form .card-body {
    padding-top: .2rem;
}

.active-form-only {
    display: none;
}

.disabled-form-only {
    display: block;
}

#btn-enable-form {
    background-color: var(--cnps-orange);
    color: white !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    border-radius: 5px;
}
#btn-enable-form:hover {
    background-color: var(--cnps-orange);
    color: white;
}

/*#btn-disable-form {
    background-color: red;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}
#btn-disable-form:hover {
    background-color: darkred;
}*/

.form-control:disabled, .form-control[readonly] {
/*    background-color: #fff;*/
    color: black;
/*    border: none;*/
/*    opacity: 1;*/
}
.form-select:disabled {
/*    background-color: #fff;*/
    color: black;
/*    border: none;*/
}

/*button.active-form-only {
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

button.active-form-only:hover {
    background-color: #0056b3;
}*/

/*#complaint-reason-div {
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
    border: 1px solid #cccccc;
    background-color: #f9f9f9;
}*/


.otp-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.otp-input:focus {
    border-color: var(--cnps-blue);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.otp-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}



@media (max-width: 575.98px) {  /*@media (max-width: 767px)*/
    .form-control{
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }

    .otp-input {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
        margin: 0 0.25rem;
    }
}
