.register-page{
  min-height:100vh;
  background:linear-gradient(180deg,#f4f9fd 0%,#eef6fb 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 18px;
  color:var(--text);
}

.register-card{
  width:100%;
  max-width:460px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:0 22px 55px rgba(14,62,97,.14);
  padding:30px 22px 26px;
}

.register-brand{
  text-align:center;
  margin-bottom:22px;
}

.register-mascot{
  width:86px;
  max-width:30%;
  display:block;
  margin:0 auto 8px;
}

.register-logo{
  width:116px;
  display:block;
  margin:0 auto;
}

.register-header{
  text-align:center;
  margin-bottom:20px;
}

.register-header h1{
  font-size:34px;
  line-height:1.05;
  margin:0 0 8px;
  color:var(--primary);
  font-weight:900;
}

.register-header p{
  margin:0;
  font-size:15px;
  line-height:1.4;
  color:var(--muted);
}

.social-login{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}

.social-btn{
  width:100%;
  height:52px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  color:var(--text);
  font-size:15px;
  font-weight:850;
  cursor:not-allowed;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:0 8px 20px rgba(14,62,97,.05);
  opacity:.78;
}

.social-btn span{
  font-size:20px;
  font-weight:900;
  color:var(--primary);
}

.divider{
  display:flex;
  align-items:center;
  gap:12px;
  margin:2px 0 18px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.divider::before,
.divider::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--line);
}

.register-error{
  background:#fff1f1;
  color:#b42318;
  border:1px solid #ffd1d1;
  border-radius:18px;
  padding:12px 14px;
  text-align:center;
  font-weight:700;
  margin-bottom:16px;
}

.register-form{
  display:flex;
  flex-direction:column;
  gap:13px;
}

.two-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.register-form label{
  display:block;
}

.register-form span{
  display:block;
  font-size:14px;
  font-weight:800;
  color:var(--primary);
  margin:0 0 7px 4px;
}

.register-form input{
  width:100%;
  height:54px;
  border:1px solid var(--line);
  border-radius:21px;
  background:#f8fbfd;
  padding:0 18px;
  font-size:16px;
  color:var(--text);
  outline:none;
  box-shadow:0 8px 20px rgba(14,62,97,.05);
}

.register-form input:focus{
  background:#fff;
  border-color:var(--light-blue);
  box-shadow:0 0 0 4px rgba(60,166,214,.16);
}

.register-form button{
  width:100%;
  height:58px;
  border:0;
  border-radius:22px;
  background:var(--primary);
  color:#fff;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(14,62,97,.22);
  margin-top:5px;
}

.trust-line{
  text-align:center;
  margin:14px 0 0;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

.register-login{
  text-align:center;
  margin:18px 0 0;
  font-size:16px;
  color:var(--text);
}

.register-login a{
  color:var(--primary);
  font-weight:900;
  text-decoration:none;
}

@media(max-width:390px){
  .two-cols{
    grid-template-columns:1fr;
  }

  .register-header h1{
    font-size:31px;
  }
}

@media(min-width:768px){
  .register-card{
    padding:34px 30px 30px;
  }

  .register-header h1{
    font-size:38px;
  }
}