/* Reset and Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container mimicking Instagram's login card */
.login-container {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  width: 350px;
  padding: 40px 40px 30px 40px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.05);
}

.login-container h2 {
  font-family: 'Billabong', cursive;
  font-size: 48px;
  margin-bottom: 30px;
  color: #262626;
}

/* Inputs styled like Instagram */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  background-color: #fafafa;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  font-size: 14px;
}

/* Blue Instagram-style button */
button {
  width: 100%;
  background-color: #0095f6;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background-color: #007edb;
}

.warning {
  color: red;
  margin-top: 15px;
  font-size: 13px;
}

/* Alert box styles for simulation warning */
#alertBox {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  padding: 20px;
  border-radius: 8px;
  width: 400px;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

#alertBox h3 {
  margin-top: 0;
}

#alertBox ul {
  text-align: left;
  padding-left: 20px;
}

#alertBox button {
  background-color: #856404;
  color: white;
  margin-top: 15px;
}

.hidden {
  display: none;
}
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8e8e8e;
  margin: 10px 0;
}

.options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.forgot {
  text-decoration: none;
  color: #00376b;
  font-weight: 500;
}

.forgot:hover {
  text-decoration: underline;
}
.save-info {
  text-align: left;
  margin: 10px 0;
  font-size: 13px;
  color: #8e8e8e;
}

.save-info label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.forgot-wrapper {
  margin-top: 15px;
}

.forgot {
  text-decoration: none;
  color: #00376b;
  font-size: 13px;
  font-weight: 500;
}

.forgot:hover {
  text-decoration: underline;
}
