body{
    font-family:'Open Sans', sans-serif;
    background:#eef5fd;
    min-height:100vh;
}
.page-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.login-card{
    max-width:420px;
    margin:auto;
    border-radius:14px;
}
@media (min-width:992px){
    .login-card{ max-width:460px; }
}
.country-box{
    display:flex;
    align-items:center;
    background:#f1f1f1;
    border-radius:8px;
    padding:8px 12px;
    white-space:nowrap;
}
.country-box img{ width:26px; }
.btn-continue{
    background:#0d6efd;
    color:#fff;
    border-radius:30px;
    padding:10px;
    font-weight:600;
}
.btn-continue:hover{ background:#0b5ed7; }
.text-small{ font-size:13px; color:#555; }
.footer-links a{
    color:#0d6efd;
    text-decoration:none;
}
.footer-links a:hover{
    text-decoration:underline;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .0rem rgba(13,110,253,.25);
}
/* ---------- TOP HEADER ---------- */
.top-header{
    display:flex;
    align-items:center;
    justify-content:center;
    position:sticky;
    top:0;
    padding:14px 15px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    z-index:1000;
}
.back-btn{
    position:absolute;
    left:6px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#f1f3f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#333;
    text-decoration:none;
}
.back-btn i{ font-size:16px; }
.page-title{
    margin:0;
    font-weight:600;
}

/* ---------- CARD ---------- */
.register-card{
    max-width:420px;
    border-radius:18px;
}
@media (min-width:992px){
    .register-card{ max-width:460px; }
}

.form-control{
    border-radius:10px;
    padding:10px;
    font-size:14px;
}
.form-control:focus{
    border-color:#5563DE;
    box-shadow:none;
}

.btn-register{
    background:#5563DE;
    color:#fff;
    border-radius:30px;
    padding:10px;
    font-weight:600;
}
.btn-register:hover{ background:#3f4cbf; }

.gender-group{
    display:flex;
    justify-content:space-between;
    gap:10px;
}
.gender-group label{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
}

/* ---------- BOTTOM NAV ---------- */
.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#fff;
    display:flex;
    justify-content:space-around;
    padding:8px 0;
    box-shadow:0 -3px 10px rgba(0,0,0,0.1);
    z-index:999;
}
.nav-item{
    text-align:center;
    font-size:11px;
    color:#555;
    text-decoration:none;
}
.nav-item i{
    font-size:18px;
    display:block;
    margin-bottom:2px;
}
.nav-item.active,
.nav-item:hover{
    color:#5563DE;
}
.otp-card{
    max-width:420px;
    border-radius:18px;
}
@media (min-width:992px){
    .otp-card{ max-width:460px; }
}

/* OTP boxes */
.otp-box{
    width:55px;
    height:55px;
    text-align:center;
    font-size:20px;
    border-radius:10px;
    border:1px solid #ccc;
}
.otp-box:focus{
    border-color:#5563DE;
    box-shadow:none;
    outline:none;
}

.btn-verify{
    background:#5563DE;
    color:#fff;
    border-radius:30px;
    padding:10px;
    font-weight:600;
}
.btn-verify:hover{
    background:#3f4cbf;
}
/* HEADER */
.dashboard-header{
    background:linear-gradient(135deg,#5563DE,#3f4cbf);
    color:#fff;
    padding:20px 15px 24px;
    border-radius:0 0 22px 22px;
}
.profile-row{
    display:flex;
    align-items:center;
    gap:12px;
}
.avatar{
    width:56px;
    height:56px;
    background:#fff;
    border-radius:50%;
}
.member-btn{
    background:#d28b04;
    color:#fff;
    border-radius:20px;
    padding:6px 14px;
    font-size:13px;
    text-decoration:none;
}

/* CONTENT */
.dashboard-content{
    padding:16px;
}

/* GRID */
.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

/* MODERN CARD */
.service-card{
    background:linear-gradient(145deg,#ffffff,#f3f6ff);
    border-radius:18px;
    padding:20px 10px;
    text-align:center;
    text-decoration:none;
    color:#333;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,.7);
    transition:.3s ease;
}
.service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(85,99,222,0.25);
}

/* ICON */
.service-icon{
    width:54px;
    height:54px;
    margin:auto;
    border-radius:16px;
    background: linear-gradient(135deg,#FFD700,#dbaf00);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    margin-bottom:10px;
}

/* TEXT */
.service-title{
    font-size:14px;
    font-weight:600;
    line-height:1.3;
}
.inner_logo
{
	position:absolute;
	left:0;
	width:40px;
	height:auto;
	left:45px;
}
