* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Exo 2", sans-serif;
  background: #f4faff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wrap {
  width: 100%;
  max-width: 460px;
}
.logo-area {
  text-align: center;
  margin-bottom: 28px;
}
.logo-area img {
  height: 56px;
  margin-bottom: 10px;
}
.logo-area p {
  font-size: 13px;
  color: #6b7a90;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(9, 19, 65, 0.12);
  padding: 40px 36px;
}
.card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #091341;
  margin-bottom: 24px;
  text-align: center;
}
.form-group {
  margin-bottom: 18px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #091341;
  margin-bottom: 7px;
}
input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d0e6f7;
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  color: #091341;
  background: #f9fcff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input:focus {
  border-color: #01deea;
  box-shadow: 0 0 0 3px rgba(1, 222, 234, 0.15);
  background: #fff;
}
.password-hint {
  font-size: 11px;
  color: #6b7a90;
  margin-top: 5px;
}
.btn-register {
  width: 100%;
  padding: 14px;
  background: #091341;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-register:hover {
  background: #0c1d63;
}
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
}
.alert-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  color: #c0392b;
}
.login-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #6b7a90;
}
.login-link a {
  color: #01a8b3;
  font-weight: 600;
  text-decoration: none;
}
.login-link a:hover {
  text-decoration: underline;
}
.back-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #6b7a90;
  text-decoration: none;
}
.back-link:hover {
  color: #091341;
}
