/* =============================
   General Page Layout
   ============================= */
body {
  font-family: Arial, sans-serif;
  background-color: #D6EAF8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Wrapper to hold both left and right panels */
.main-container {
  display: flex;
  flex-direction: row;
  background-color: #D6EAF8;
  padding: 40px;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================
   PWD Info Section (Left Side)
   ============================= */
.pwd-info {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* =============================
   Login Container (Right Side)
   ============================= */
.login-container {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

/* =============================
   Logo
   ============================= */
.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

/* =============================
   Heading
   ============================= */
h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}

/* =============================
   Form Inputs
   ============================= */
form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-group {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.input-group input {
  width: 90%;
  max-width: 320px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
}

.input-group input:focus {
  border-color: #007bff;
  box-shadow: 0px 0px 6px rgba(0, 123, 255, 0.3);
}

/* =============================
   Checkbox Group
   ============================= */
.checkbox-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 320px;
  font-size: 14px;
  margin-bottom: 15px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #007bff;
}

.checkbox-group a {
  color: #007bff;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* =============================
   Buttons
   ============================= */
.btn {
  display: block;
  width: 90%;
  max-width: 320px;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color 0.3s;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* =============================
   Signup Link
   ============================= */
.signup {
  font-size: 14px;
}

.signup a {
  text-decoration: none;
  color: #007bff;
}

.signup a:hover {
  text-decoration: underline;
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 850px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
