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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #feb54f, #fed800);
}

#back {
  text-decoration: none;
  width: 20%;
  display: flex;
  align-self: self-start;
  background: #ececec;
  color: orange;
  padding: 3px 20px;
  border-radius: 4px;
  font-size: 8px;
  cursor: pointer;
}

.signin-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.signin-container h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group input:focus {
  border-color: #4facfe;
  outline: none;
}

.btn {
  text-decoration: none;
  text-align: center;
  display: flex;
  width: 100%;
  padding: 12px 60px;
  border: none;
  border-radius: 6px;
  background: orange;
  border: orange solid 2px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #00c3ff;
  background: none;
  border: orange solid 2px;
  color: orange;
}

.extra-links {
  margin-top: 15px;
  font-size: 14px;
}

.extra-links a {
  color: #4facfe;
  text-decoration: none;
}

.extra-links a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=signin.css.map */