html, body {

  margin: 0;
  padding: 0;
}

body {
  background: #f5f8ff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.login-container {
  min-
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  width: 95%;
  max-width: 650px;
  box-sizing: border-box;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-
  border-radius: 0;
  box-shadow: none;
}

.logo {
  height: 200px;
  margin-bottom: 30px;
  align-self: center;
}
h2 {
  color: #2c4faa;
  margin-bottom: 12px;
  font-size: 40px;
  text-align: center;
}
.subhead {
  font-size: 28px;
  color: #444;
  margin-bottom: 35px;
  text-align: center;
}
.input-group {
  margin: 22px 0;
  position: relative;
}
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 24px;
  padding-right: 55px;
  font-size: 29px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}
.toggle-password {
  position: absolute;
  right: 12px;
  top: 26px;
  cursor: pointer;
  font-size: 31px;
}
.captcha-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 14px;
}
.captcha-section img {
  height: 70px;
  border: 1px solid #ccc;
}
.captcha-section button {
  font-size: 26px;
  padding: 10px 16px;
}
.login-btn {
  width: 100%;
  padding: 10px;
  background: #4d73d1;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  margin-top: 18px;
}
.login-btn:hover {
  background: #3f62b4;
}
.links {
  margin-top: 40px;
  font-size: 24px;
  text-align: center;
}
.links a {
  color: #2c4faa;
  text-decoration: none;
  display: inline-block;
  margin: 6px;
}

/* Profile Page Styles */
.profile-content {
  max-width: 1000px;
  margin: 40px 10px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.profile-content table {
  width: 100%;
  border-collapse: collapse;
}
.profile-content table td {
  padding: 12px 10px;
  border-bottom: 1px solid #ddd;
  color:#000000;
}
.profile-content table td:first-child {
  font-weight: bold;
  width: 40%;
  background-color: #f0f0f0;
}
.back-link {
  text-align: center;
  margin-top: 20px;
}
.back-link a {
  color: #0d6efd;
  font-weight: bold;
  text-decoration: none;
}

/* Extra styling for small screens with 50% increased font size */
@media (max-width: 1200px) {
  .login-container {
  min-display: flex;
  flex-direction: column;
  justify-content: center;
  width: 95%;
  max-width: 950px;

  }
p {font-size:42px;}
  .logo {
    height: 300px;
  }
.captcha-section img {
    height: 150px;
    border: 1px solid #ccc;
}
  h2 {
    font-size: 60px;
  }
  .subhead {
    font-size: 36px;
  }
  input[type="text"],
  input[type="password"] {
    font-size: 43px;
    padding: 36px;
  }
  .toggle-password {
    font-size: 47px;
    top: 40px;
  }
  .login-btn {
    font-size: 47px;
    padding: 36px;
  }
  .links {
    font-size: 36px;
  }
  .links a {
    font-size: 36px;
  }
  form p a {
    font-size: 36px !important;
  }
}

.notice-link {
  color: red;
  font-size: 24px;
  text-align: center;
}


/* Dashboard Styles */
.dashboard-header {
  background-color: #0d6efd;
  color: white;
  text-align: center;
  padding: 20px;
}
.dashboard-sub-header {
  background-color: #61c5ff;
  color: white;
  font-size: 20px;
  text-align: center;
  padding: 10px;
}
.dashboard-menu {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}
.dashboard-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border: 2px solid #0d6efd;
  border-radius: 12px;
  padding: 15px 20px;
  text-decoration: none;
  color: #0d6efd;
  font-weight: bold;
  font-size: 20px;
}
.dashboard-menu a i {
  font-size: 24px;
}

.dashboard-title {
  color: white;
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}
.dashboard-top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px;
  background-color: #0d6efd;
}

td {
font-size:32px;
text-align:left;
}

.login-btn {
font-size:30px;
}
