 /* General Styles */
.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f2f5;
}

/* Login Form Styles */
.login-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 400px;
  margin: auto;
  color: #1c1e21;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #1c1e21;
}

.login-form form {
  display: flex;
  flex-direction: column;
}

.login-form .form-group {
  margin-bottom: 15px;
}

.login-form input {
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #dddfe2;
  background-color: #f5f6f7;
  font-size: 17px;
  color: #1c1e21;
}

.login-form input:focus {
  outline: none;
  border-color: #1877f2;
}

.login-form button {
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  background-color: #1877f2;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-form button:hover {
  background-color: #166fe5;
}

/* Link Styles */
.login-form .border-top {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #dddfe2;
  text-align: center;
}

.login-form .text-muted {
  color: #606770;
  font-size: 14px;
}

.login-form a {
  color: #1877f2;
  text-decoration: none;
}

.login-form a:hover {
  text-decoration: underline;
}

  /*-------------------------------------------------------------------------------

  /* Styling for the registration form */
.content-section-register {
  background-color: #f8f9fa; /* Light grey background */
  color: #212529; /* Dark text color */
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
  max-width: 800px; /* Set max width for the form */
  margin: 20px auto; /* Center align the form */
}

.content-section-register h2, .content-section-register legend {
  color: #212529; /* Dark color for headings */
}

/* Form Styles */
#registerForm {
  background-color: #ffffff; /* White background for the form */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
}

#registerForm .form-group label {
  color: #495057; /* Dark grey color for labels */
}

#registerForm input, #registerForm select {
  background-color: #ffffff; /* White background for input fields */
  border: 1px solid #ced4da;
  color: #495057; /* Dark text color for inputs */
  padding: 10px;
  border-radius: 5px;
}

#registerForm input:focus, #registerForm select:focus {
  outline: none;
  border-color: #80bdff; /* Light blue for focus */
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25); /* Glow effect on focus */
}

#registerForm .btn-outline-info {
  color: #007bff; /* Bootstrap blue for buttons */
  border-color: #007bff;
  background-color: transparent;
}

#registerForm .btn-outline-info:hover {
  background-color: #007bff;
  color: #ffffff;
}

/* Link Styles */
.content-section-register a {
  color: #007bff; /* Bootstrap blue for links */
}

.content-section-register a:hover {
  text-decoration: underline;
}

/* Bottom Small Text */
.content-section-register .border-top {
  border-top-color: #e9ecef; /* Light border color */
  margin-top: 15px;
  padding-top: 15px;
}

.content-section-register small {
  color: #6c757d; /* Bootstrap grey color for small text */
}

/* Styles for Enabled Dropdown */
#registerForm select:enabled {
  background-color: #ffffff; /* White background for active dropdowns */
  color: #495057; /* Dark text color for active dropdowns */
}

/* Styles for Disabled Dropdown */
#registerForm select:disabled {
  background-color: #e9ecef; /* Light grey background for disabled dropdowns */
  color: #6c757d; /* Light grey text color for disabled dropdowns */
  cursor: not-allowed; /* Cursor style to indicate disabled state */
}

  /*--------------------------------------------------------------------------------

  /* Styling for the profile information form */
/* Styling for the profile information form */
.content-section-profile {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.content-section-profile legend {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: #1877f2;
}

.content-section-profile .form-profile {
  margin-top: 20px;
}

.content-section-profile .media {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}

.content-section-profile .media-body {
  padding: 20px;
}

.content-section-profile .account-heading {
  font-size: 24px;
  color: #1877f2;
  margin-bottom: 10px;
}

.content-section-profile .text-muted {
  font-size: 14px;
}

.content-section-profile .text-secondary {
  color: #777;
}

.content-section-profile fieldset {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.content-section-profile .form-row {
  margin-bottom: 10px;
}

.content-section-profile .form-group {
  margin-bottom: 10px;
}

.content-section-profile a {
  color: #1877f2;
  text-decoration: none;
}

.content-section-profile a:hover {
  text-decoration: underline;
}

.content-section-profile .btn-outline-info {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #1877f2;
  border-radius: 4px;
  color: #1877f2;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.content-section-profile .btn-outline-info:hover {
  background-color: #1877f2;
  color: #fff;
}

/* Additional styling for the overall page layout if needed */
body {
  background-color: #f0f2f5;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.content-section-profile {
  padding: 40px 0;
}

/*-----------------------------------------------------------------------*/
/* Password Reset Form Styles */
.content-section-password-reset {
  max-width: 500px; /* Restricting the form width */
  margin: 30px auto; /* Centering the form on the page */
  padding: 20px;
  background-color: #fff; /* White background for clarity */
  border-radius: 8px; /* Rounded corners for a softer look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.content-section-password-reset h2 {
  color: #007bff; /* Blue color for the heading */
  text-align: center; /* Center align the heading */
  margin-bottom: 15px; /* Spacing below the heading */
}

.content-section-password-reset hr {
  margin-bottom: 20px; /* Spacing below the horizontal line */
}

.content-section-password-reset p {
  text-align: center; /* Center align the paragraph text */
  color: #333; /* Dark color for readability */
  margin-bottom: 20px; /* Spacing below the paragraph */
}

.password-reset-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align form elements */
}

.password-reset-form .form-group {
  width: 100%; /* Full width for input fields */
}

.password-reset-form button {
  background-color: #17a2b8; /* Teal background color for the button */
  color: #fff; /* White color for button text */
  border: none;
  padding: 10px 20px; /* Padding inside the button */
  border-radius: 4px; /* Rounded corners for the button */
  cursor: pointer; /* Pointer cursor on hover */
  font-weight: bold;
}

.password-reset-form button:hover {
  background-color: #138496; /* Darker shade on hover for the button */
}

/* Adjustments for mobile responsiveness */
@media (max-width: 576px) {
  .content-section-password-reset {
      margin: 10px;
      padding: 10px;
  }
}

/* ########################################################### */


/* Additional styling for the overall page layout if needed */
body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}




