/* Reuse the login class from the register page */
.login {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 100%;
}

/* Container for the two columns */
.account-sections {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Styling for each column */
.account-column {
  flex: 1;
  min-width: 0; /* Prevents overflow */
}

/* Heading style matching the register page */
.account-heading {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: black;
}

/* List styling */
.account-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

/* List item styling */
.account-list-item {
  margin-bottom: 10px;
}

/* Link styling to match the register page */
.account-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 15px;
}

/* Add the diamond bullet before each link (as seen in the original image) */
.account-link::before {
  content: ">";
  position: absolute;
  left: 0;
  font-size: 10px;
  color: #333;
}

/* Responsive design: Stack columns on mobile */
@media (max-width: 767px) {
  .login {
    margin-top: 10px;
  }
  .account-sections {
    flex-direction: column;
  }
  .account-column {
    width: 100%;
  }
}