/* =========================
   WINBOOST AUTH - STYLE
   ORANGE THEME
========================= */

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

body {
  background: #0f0f0f;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 20px;
  left: 30px;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
}

.logo span {
  color: #ff7a00;
  font-weight: bold;
  font-size: 18px;
}

/* REGISTER BOX */
.register-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-box {
  background: #151515;
  padding: 35px;
  width: 380px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.3);
  border: 1px solid rgba(255, 122, 0, 0.2);
}

/* TEXT */
.register-box h1 {
  color: #ff7a00;
  margin-bottom: 10px;
}

.register-box p {
  color: #aaa;
  margin-bottom: 20px;
}

/* INPUTS */
.register-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  transition: 0.3s;
}

.register-box input:focus {
  border: 1px solid #ff7a00;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

/* BUTTON */
.register-box button {
  width: 100%;
  padding: 12px;
  background: #ff7a00;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.register-box button:hover {
  background: #ff5e00;
  transform: scale(1.03);
}

/* MESSAGE */
.message {
  margin-top: 10px;
  font-size: 14px;
  color: #ffb347;
}

/* LINK */
.register-box a {
  display: block;
  margin-top: 15px;
  color: #ff7a00;
  text-decoration: none;
  font-size: 14px;
}

.register-box a:hover {
  text-decoration: underline;
}

/* LOGIN BOX */
.login-box {
  background: #151515;
  padding: 35px;
  width: 380px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.3);
  border: 1px solid rgba(255, 122, 0, 0.2);
}

/* TEXT */
.login-box h1 {
  color: #ff7a00;
  margin-bottom: 10px;
}

.login-box p {
  color: #aaa;
  margin-bottom: 20px;
}

/* INPUTS */
.login-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  transition: 0.3s;
}

.login-box input:focus {
  border: 1px solid #ff7a00;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

/* BUTTON */
.login-box button {
  width: 100%;
  padding: 12px;
  background: #ff7a00;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.login-box button:hover {
  background: #ff5e00;
  transform: scale(1.03);
}

/* MESSAGE */
.login-box .message {
  margin-top: 10px;
  font-size: 14px;
  color: #ffb347;
}

/* LINK */
.login-box a {
  display: block;
  margin-top: 15px;
  color: #ff7a00;
  text-decoration: none;
  font-size: 14px;
}

.login-box a:hover {
  text-decoration: underline;
}