*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  font-family:Arial, Helvetica, sans-serif;
  color:#fff;
}

body{
  background:#050505 url("assets/login-bg.jpg") center center / cover no-repeat fixed;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:0;
}

.register-page{
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.register-box{
  width:390px;
  max-width:94vw;
  text-align:center;
}

.register-logo{
  width:180px;
  max-width:80%;
  margin:0 auto 14px;
  display:block;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.85));
}

.register-title{
  margin-bottom:22px;
  color:#ff4a2b;
  font-size:26px;
  font-weight:900;
  text-shadow:0 2px 8px rgba(0,0,0,.85);
}

.register-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.register-form input,
.register-form select{
  width:100%;
  height:40px;
  border:1px solid rgba(255,85,35,.35);
  background:rgba(0,0,0,.45);
  color:#fff;
  padding:0 14px;
  font-size:15px;
  outline:none;
}

.register-form input::placeholder{
  color:rgba(255,255,255,.65);
}

.register-form select{
  color:rgba(255,255,255,.78);
}

.register-form input:focus,
.register-form select:focus{
  border-color:#ff4a2b;
  box-shadow:0 0 12px rgba(255,65,25,.28);
}

.terms-line{
  margin:2px 0 4px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#ddd;
  font-size:13px;
}

.terms-line input{
  width:16px;
  height:16px;
  accent-color:#e63b18;
}

.terms-line a,
.login-line a{
  color:#ff6a3d;
  text-decoration:none;
}

.terms-line a:hover,
.login-line a:hover{
  text-decoration:underline;
}

.btn-create{
  height:42px;
  border:none;
  background:linear-gradient(180deg,#ff4b20,#d9230a);
  color:#fff;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.35);
}

.btn-create:hover{
  filter:brightness(1.08);
}

.login-line{
  margin-top:6px;
  color:#fff;
  font-size:14px;
  text-shadow:0 2px 6px rgba(0,0,0,.85);
}

.register-message{
  min-height:18px;
  margin-top:4px;
  font-size:13px;
  color:#ffb39f;
}

.btn-create:disabled{
  opacity:.45;
  cursor:not-allowed;
  filter:grayscale(.2);
}