/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
}

.reg {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 500px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.container header {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.form .input-box {
  margin-bottom: 20px;
}

.form label {
  color: #333;
}

.form input,
.form select {
  width: 100%;
  height: 50px;
  outline: none;
  font-size: 1rem;
  color: #707070;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.form input:focus,
.form select:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.text-danger {
  color: red;
}

.form button {
  width: 100%;
  height: 55px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background: rgb(130, 106, 251);
  border-radius: 6px;
}

.form button:hover {
  background: rgb(88, 56, 250);
}
@media only screen and (max-width: 768px) {
  .container {
    width: 60%; /* Adjust width for smaller screens */
  }
  
}
