.customer_register_page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0a0a0a;
  padding:20px;
}

.customer_register_card{
  width:100%;
  max-width:460px;
  background:#121212;
  border:1px solid #222;
  border-radius:24px;
  padding:24px;
}

.customer_register_header{
  text-align:center;
  margin-bottom:24px;
}

.customer_register_header h1{
  margin:0 0 8px;
}

.customer_register_header p{
  margin:0;
  color:var(--muted);
}

.customer_register_info_btn,
.customer_register_back_btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  margin-top:16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
}

.customer_register_info_btn{
  border:1px solid #2a2a2a;
  background:#111;
  color:#fff;
}

.customer_register_info_btn:hover{
  border-color:var(--brand);
  color:var(--brand);
}

.customer_register_back_btn{
  border:1px solid var(--brand);
  background:#000;
  color:var(--brand);
}

.customer_register_back_btn:hover{
  background:var(--brand);
  color:#000;
}

.customer_register_form button{
  width:100%;
  margin-top:8px;
  min-height:52px;
  border:0;
  border-radius:14px;
  background:var(--brand);
  color:#000;
  font-weight:900;
  cursor:pointer;
}