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

body {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  max-width: 380px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.container h1 {
  font-size: 24px;
  margin: 10px 0 20px;
}

.container h4 {
  color: #555;
  font-weight: 500;
  margin: 20px;
  font-size: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #3f3f3f;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}



.signup-btn {
  width: 100%;
  background-color: #2f80ed;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 15px;
}

.divider {
  text-align: center;
  margin: 15px 0;
  position: relative;
}

.divider span {
  background: #fff;
  padding: 0 10px;
  color: #777;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  width: 40%;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}





.signin-link {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.signin-link a {
  color: #2f80ed;
  text-decoration: none;
  font-weight: 600;
}