body{
  /*font-family: Segoe UI, Arial;*/
  background: linear-gradient(135deg,#0f4c75,#3282b8);
  min-height:100vh;
  margin:0;
  display:flex;
  justify-content:center;
  align-items:center;
}
.box{
  background:#fff;
  width:100%;
  max-width:350px;
  padding:22px;
  border-radius:14px;
  box-shadow:0 12px 35px rgba(0,0,0,.25);
}
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.header img{height:48px;}
.center{height:58px;}
h2{text-align:center;color:#0f4c75;margin:10px 0;}
.form-group{margin-bottom:14px;}
label{font-size:13px;font-weight:600;}
input{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
  margin-top:6px;
}
button{
  width:100%;
  padding:12px;
  background:#0f4c75;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}
.card{
  border:2px dashed #0f4c75;
  border-radius:10px;
  padding:15px;
  text-align:center;
}
.token{
  font-size:22px;
  font-weight:bold;
}
.user-photo{
  margin-bottom:10px;
}
.user-photo img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:8px;
  border:2px solid #0f4c75;
}
.footer{
  text-align:center;
  font-size:12px;
  color:#777;
  margin-top:12px;
}
.address-box {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;        /* user can resize vertically only */
    font-size: 14px;
  /*  font-family: "Segoe UI", Arial, sans-serif;*/
    transition: border 0.3s, box-shadow 0.3s;
}

.address-box:focus {
    border-color: #3282b8;  /* blue border on focus */
    box-shadow: 0 0 5px rgba(50,130,184,0.3);
    outline: none;
}

* { box-sizing: border-box; }

body {
/*  font-family: "Segoe UI", Arial, sans-serif;*/
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-box {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  height: 45px;
}

.center-logo {
  height: 55px;
}

.header-title {
  text-align: center;
  margin: 10px 0 15px;
}

.header-title h2 {
  margin: 0;
  font-size: 18px;
  color: #0f4c75;
}

.header-title p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}

/* FORM */
.form-group {
  margin-bottom: 14px;
}

label {
  font-size: 13px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 11px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

input:focus {
  outline: none;
  border-color: #3282b8;
}

button {
  width: 100%;
  padding: 12px;
  background: #0f4c75;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* RESULT CARD */
.reg-card {
  display: none;
  border: 2px dashed #0f4c75;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.reg-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0f4c75;
  margin-bottom: 10px;
}

.token {
  font-size: 20px;
  font-weight: bold;
}

.footer-note {
  text-align: center;
  font-size: 11px;
  color: #777;
  margin-top: 15px;
}/* CSS Document */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.input-box,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #bbb;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    appearance: none;          /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23666' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

/* Focus effect (same as input) */
.input-box:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.15);
}

