@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  width: 100%;
  background: #f6f6f6;
}

.topbar {
  width: 100%;
  background: #2d2d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.topbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f27438;
}

.logo a {
  color: inherit;
  text-decoration: none;
}

.topbar .actions {
  display: flex;
  gap: 16px;
}

.topbar .actions a {
  text-decoration: none;
  color: #fff;
  background: #f27438;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
}

.topbar .actions a.signup {
  background: #fff;
  color: #f27438;
  border: 1px solid #f27438;
}

.topbar .actions a:hover {
  background: #f27438;
  color: #fff;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 430px;
  width: 100%;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.container .form {
  padding: 2rem;
}

.form header {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form input {
  height: 60px;
  width: 100%;
  padding: 0 15px;
  font-size: 17px;
  margin-bottom: 1.3rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.form input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.form a {
  font-size: 16px;
  color: #f27438;
  text-decoration: none;
}

.form a:hover {
  text-decoration: underline;
}

.form input.button {
  color: #fff;
  background: #f27438;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: 0.4s;
}

.form input.button:hover {
  background: #f27438;
}

.signup {
  font-size: 17px;
  text-align: center;
}

.signup a {
  color: #f27438;
  cursor: pointer;
}

.signup a:hover {
  text-decoration: underline;
}
