.verify-page{

max-width:600px;
padding-top:70px;

}

.verify-card{

background:white;

border-radius:16px;

padding:30px;

box-shadow:0 6px 20px rgba(0,0,0,0.06);

text-align:center;

}

.verify-card h1{

margin-bottom:10px;

}

.verify-sub{

color:#6b7280;

margin-bottom:25px;

}

.verify-steps{

display:flex;
flex-direction:column;
gap:16px;

margin-bottom:30px;

}

.verify-step{

display:flex;
gap:14px;

text-align:left;

background:#f9fafb;

padding:12px;

border-radius:10px;

}

.step-icon{

font-size:20px;

}

.verify-start{

width:100%;
margin-top:10px;

}

.verify-secure{

margin-top:14px;
font-size:13px;
color:#9ca3af;

}

.verify-support-links{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:10px;

margin-top:8px;
padding-top:16px;

border-top:1px solid #eef2f7;
}

.verify-support-links a{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:34px;
padding:0 12px;

border:1px solid #e5e7eb;
border-radius:999px;

background:#f8fafc;
color:#475569;

font-size:12px;
font-weight:700;
text-decoration:none;

transition:border-color .2s ease, background .2s ease, color .2s ease;
}

.verify-support-links a:hover{
border-color:#cbd5e1;
background:#fff;
color:#111827;
}

.verify-notice{
display:block;
margin:0 0 18px;
padding:12px 14px;
border-radius:12px;
font-size:14px;
text-align:left;
}

.verify-notice.hidden{
display:none;
}

.verify-notice.error{
background:#fee2e2;
color:#991b1b;
}

.verify-notice.success{
background:#dcfce7;
color:#166534;
}

.verify-notice.info{
background:#eff6ff;
color:#1d4ed8;
}

.verify-summary{
display:grid;
gap:10px;
margin-bottom:20px;
text-align:left;
}

.verify-summary-item{
display:flex;
justify-content:space-between;
gap:12px;
padding:12px 14px;
border-radius:12px;
background:#f8fafc;
border:1px solid #e5e7eb;
font-size:14px;
}

.verify-summary-item strong{
font-size:13px;
color:#0f172a;
}

.verify-summary-item span{
text-align:right;
word-break:break-word;
color:#475569;
}

.verify-summary-item.missing{
border-color:#fecaca;
background:#fff7f7;
}

.verify-form{
display:flex;
flex-direction:column;
gap:12px;
text-align:left;
}

.verify-label{
font-size:13px;
font-weight:600;
color:#0f172a;
}

.verify-input{
width:100%;
padding:12px 14px;
border:1px solid #dbe2ea;
border-radius:12px;
font-size:15px;
outline:none;
transition:border-color .2s ease, box-shadow .2s ease;
}

.verify-input:focus{
border-color:#2563eb;
box-shadow:0 0 0 3px rgba(37,99,235,0.12);
}

.verify-upload{
display:flex;
flex-direction:column;
gap:4px;
padding:18px 16px;
border:1.5px dashed #93c5fd;
border-radius:16px;
background:#f8fbff;
cursor:pointer;
transition:border-color .2s ease, background .2s ease;
}

.verify-upload:hover{
border-color:#2563eb;
background:#eff6ff;
}

.verify-upload strong{
font-size:14px;
color:#0f172a;
}

.verify-upload p,
.verify-helper{
font-size:13px;
line-height:1.45;
color:#64748b;
}

.selfie-preview{
display:flex;
flex-direction:column;
gap:10px;
padding:12px;
border:1px solid #e5e7eb;
border-radius:16px;
background:#fff;
}

.selfie-preview.hidden{
display:none;
}

.selfie-preview img{
width:100%;
max-height:260px;
object-fit:cover;
border-radius:14px;
background:#e5e7eb;
}

.verify-secondary{
border:1px solid #dbe2ea;
background:#fff;
color:#0f172a;
border-radius:10px;
padding:10px 12px;
font-weight:600;
cursor:pointer;
}

.verify-start[disabled],
.verify-secondary[disabled]{
opacity:0.65;
cursor:not-allowed;
}

.verify-start{
display:flex;
align-items:center;
justify-content:center;
gap:8px;
width:100%;
margin-top:10px;
}

.verify-spinner{
width:16px;
height:16px;
border:2px solid rgba(255,255,255,0.4);
border-top-color:#fff;
border-radius:50%;
animation:verifySpin .75s linear infinite;
}

@keyframes verifySpin{
to{ transform:rotate(360deg); }
}
