* {
  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;
}
.login-wrap {
  width: 100%;
  max-width: 420px;
}
.logo-area {
  text-align: center;
  margin-bottom: 28px;
}
.logo-area img {
  height: 56px;
  margin-bottom: 10px;
}
.logo-area h1 {
  font-size: 22px;
  font-weight: 700;
  color: #091341;
}
.logo-area p {
  font-size: 13px;
  color: #6b7a90;
  margin-top: 4px;
}
.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;
}
.btn-login {
  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-login:hover {
  background: #0c1d63;
}
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
  text-align: center;
}
.alert-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  color: #c0392b;
}
.alert-success {
  background: #f0fff4;
  border: 1px solid #b7f5c8;
  color: #1a7a3c;
}
.divider {
  text-align: center;
  font-size: 13px;
  color: #6b7a90;
  margin: 20px 0;
}
.btn-register {
  display: block;
  width: 100%;
  padding: 13px;
  background: transparent;
  color: #091341;
  border: 1.5px solid #d0e6f7;
  border-radius: 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-register:hover {
  border-color: #01deea;
  background: #f4faff;
  text-decoration: none;
  color: #091341;
}
.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #6b7a90;
  text-decoration: none;
}
.back-link:hover {
  color: #091341;
}
