.auth-card {
    max-width: 420px;
    margin: 50px auto;
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

.auth-card h2 {
    margin-bottom: 8px;
}

.auth-card p {
    color: #64748b;
    margin-bottom: 18px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-submit-btn {
    margin-top: 6px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
}

.auth-submit-btn:hover {
    background: #1d4ed8;
}

.auth-footer {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

/* =========================
   CLEAN AUTH LAYOUT
========================= */

.dentnow-auth-layout{
    max-width:1100px;
    margin:0 auto;
    padding:60px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.auth-hero-premium{
    flex:1;
    max-width:520px;
}

.auth-hero-premium h1{
    font-size:58px;
    line-height:1.02;
    margin:14px 0;
    color:#0f172a;
    font-weight:900;
}

.auth-hero-premium p{
    font-size:18px;
    line-height:1.7;
    color:#64748b;
}

.auth-card-premium{
    width:100%;
    max-width:420px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:30px;
    padding:32px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.auth-top-note{
    display:flex;
    gap:14px;
    margin-bottom:22px;
}

.auth-top-note-icon{
    font-size:24px;
}

.auth-top-note-content strong{
    display:block;
    margin-bottom:4px;
}

.auth-top-note-content span{
    color:#64748b;
    line-height:1.5;
    font-size:14px;
}

.auth-form-row{
    margin-bottom:16px;
}

.auth-form-row label{
    display:block;
    margin-bottom:7px;
    font-weight:700;
}

.auth-form-row input{
    width:100%;
    height:54px;
    border:1px solid #dbe4ee;
    border-radius:16px;
    padding:0 16px;
    font-size:15px;
}

.auth-submit-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
}

.auth-inline-note{
    margin:16px 0 22px;
    color:#64748b;
    font-size:14px;
    line-height:1.5;
}

.auth-footer-links{
    margin-top:22px;
    text-align:center;
}

.auth-footer-links a{
    color:#2563eb;
    font-weight:800;
    text-decoration:none;
}

@media(max-width:900px){

    .dentnow-auth-layout{
        flex-direction:column;
        align-items:flex-start;
        gap:30px;
        padding:34px 16px 50px;
    }

    .auth-hero-premium h1{
        font-size:40px;
    }

    .auth-card-premium{
        max-width:none;
    }

}

/* =========================
   AUTH WOW POLISH
========================= */

.dentnow-auth-layout{
    position:relative;
}

.dentnow-auth-layout::before{
    content:"";
    position:absolute;
    left:50%;
    top:48%;
    width:520px;
    height:520px;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(37,99,235,.14), transparent 65%);
    filter:blur(8px);
    z-index:-1;
}

.auth-hero-premium::after{
    content:"Live emergency network";
    display:inline-flex;
    margin-top:26px;
    padding:12px 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid #e2e8f0;
    box-shadow:0 14px 35px rgba(15,23,42,.07);
    color:#2563eb;
    font-weight:900;
}

.auth-card-premium{
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
        0 24px 70px rgba(15,23,42,.12),
        inset 0 1px 0 rgba(255,255,255,.75);
}

.auth-card-premium::before{
    content:"";
    display:block;
    height:4px;
    width:72px;
    border-radius:999px;
    background:linear-gradient(135deg,#2563eb,#22c55e);
    margin-bottom:22px;
}

.auth-submit-btn{
    box-shadow:0 14px 32px rgba(37,99,235,.24);
}

.auth-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(37,99,235,.30);
}