/* SIGNUP PAGE - CLEANED UP TO MATCH LOGIN */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
background: linear-gradient(rgba(0, 0, 50, 0.7), rgba(0, 0, 50, 0.7)), url('bg_gabaylaro.png');
background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10px;
}

.box {
  background: #fdfdfd;
  display: flex;
  flex-direction: column;
  padding: 20px 25px; /* reduced padding */
  border-radius: 20px;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 450px;
}

.form-box {
  width: 100%;
  margin: 20px auto;
}

.form-box header {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: rgb(54, 65, 127);
}

.form-box hr {
  background-color: rgb(54, 65, 127);
  height: 4px;
  width: 20%;
  border: none;
  margin: 8px auto;
  border-radius: 5px;
}

.input-container {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.icon {
  padding: 15px;
  background-color: #f1f1f1;
  min-width: 50px;
  text-align: center;
  color: #555;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.input-field {
  width: 100%;
  padding: 10px;
  height: 50px;
  border: none;
  background-color: #f1f1f1;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.input-container select {
  background: #fff;
  color: rgb(54, 65, 127);
  border: 1px solid rgb(54, 65, 127);
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
}

.remember {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: 20px 0 30px;
}

.remember input[type="checkbox"] {
  margin-right: 5px;
}

.remember span a {
  text-decoration: none;
  color: rgb(54, 65, 127);
}

.btn {
  height: 45px;
  width: 100%;
  background-color: rgb(54, 65, 127);
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.btn:hover {
  opacity: 0.8;
}

.links {
  margin-top: 15px;
  text-align: center;
}

.links a {
  color: rgb(54, 65, 127);
  text-decoration: none;
}

.message {
  color: rebeccapurple;
  padding: 15px 0;
  text-align: left;
}

@media screen and (max-width: 600px) {
  .box {
    padding: 15px 20px;
  }

  .form-box header {
    font-size: 30px;
  }

  .btn {
    font-size: 16px;
  }
}

