/* Base Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.container {
  background: #f7f9fc;
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1rem auto;
  display: block;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #0b63ce;
}

input, button {
  width: 100%;
  padding: 0.8rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  outline: none;
}

input:focus {
  border-color: #0b63ce;
}

button {
  background-color: #0b63ce;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

button:hover {
  background-color: #084ea1;
}

.account-type {
  display: flex;
  justify-content: space-between;
  background: #eaf3ff;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.account-type label {
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

p {
  font-size: 0.9rem;
}

a {
  color: #0b63ce;
  text-decoration: none;
}

.message {
  font-size: 0.9rem;
  color: #ff4d4d;
  margin-top: 1rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 0.8rem;
  text-align: center;
  width: 90%;
  max-width: 360px;
}

.modal-content h3 {
  margin-bottom: 1rem;
  color: #0b63ce;
}

.modal-content button {
  margin-top: 1rem;
}

.cancel {
  background: #ccc;
  color: #333;
}
