body {
    background-color: black !important;
    /* color: white; */
    font-family: Arial, sans-serif;
}

.header {
    background-color: black;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.logo {
    height: 50px;
}

.form-container {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
}

.form-title {
    color: #E03FA9;
    margin-bottom: 30px;
    text-align: center;
}

.section-title {
    color: #009CDF;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.form-label {
    color: white;
    margin-bottom: 5px;
}

.form-control {
    background-color: #222;
    border: 1px solid #333;
    color: white;
    margin-bottom: 15px;
}

.form-control:focus {
    background-color: #222;
    border-color: #009CDF;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(0, 156, 223, 0.25);
}

.btn-primary {
    background-color: #E03FA9;
    border-color: #E03FA9;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #c03592;
    border-color: #c03592;
}

.login-link {
    color: #009CDF;
    text-align: center;
    display: block;
    margin-top: 20px;
}

.login-link:hover {
    color: #007bb5;
    text-decoration: none;
}

.required-field::after {
    content: " *";
    color: #E03FA9;
}

.add-contact-btn {
    background-color: transparent;
    color: #009CDF;
    border: 1px solid #009CDF;
    padding: 5px 10px;
    margin-bottom: 15px;
}

.add-contact-btn:hover {
    background-color: rgba(0, 156, 223, 0.1);
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

.footer a {
    color: #009CDF;
    text-decoration: none;
}

/* For the verify.php page */
.auth-container {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.alert-danger {
    background-color: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* For multiple select elements */
select[multiple] {
    height: auto;
    min-height: 100px;
}

.form-text.text-muted {
    color: #6c757d !important;
    font-size: 0.8rem;
}

/* Ensure all text is white */
body, .form-check-label {
    color: white !important;
}

/* Style checkboxes to be visible on dark background */
.form-check-input {
    background-color: #222;
    border-color: #333;
}

.form-check-input:checked {
    background-color: #E03FA9;
    border-color: #E03FA9;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 156, 223, 0.25);
}

/* Style the horizontal rule */
hr {
    border-color: #333;
    margin: 1rem 0;
}

/* Style headings */
h1, h2, h3, h4, h5, h6 {
    color: white;
}

/* Specific style for the self-billing section */
h2 {
    color: #E03FA9;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.password-group {
  position: relative !important;
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  align-items: flex-start !important;
}

.password-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;

}

.toggle-password {
  background-color: #fff;
  padding: 10px !important;
  border: 1px solid #ced4da;
  border-left: none;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%; /* ensures full height match with input */
}

.toggle-password i {
  font-size: 1.1rem;
  color: #555;
}



