*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
    }
    
    body{
    
    height:100vh;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    background:
    linear-gradient(
    135deg,
    #1e293b,
    #0f172a
    );
    
    }
    
    .card{
    
    width:380px;
    
    background:white;
    
    padding:40px;
    
    border-radius:20px;
    
    }
    
    h1{
    
    margin-bottom:20px;
    
    text-align:center;
    
    }
    
    input{
    
    width:100%;
    
    padding:14px;
    
    margin-bottom:15px;
    
    border:2px solid #ddd;
    
    border-radius:10px;
    
    }
    
    button{
    
    width:100%;
    
    padding:14px;
    
    border:none;
    
    background:#2563eb;
    
    color:white;
    
    border-radius:10px;
    
    cursor:pointer;
    
    }
    
    p{
    
    margin-top:20px;
    
    text-align:center;

    
    }


    /* Toast Notification */

#toast{
    position:fixed;
    top:25px;
    right:25px;
    padding:14px 22px;
    border-radius:14px;
    color:white;
    font-weight:700;
    display:none;
    z-index:99999;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    animation:toastSlide .3s ease;
    }
    
    #toast.success{
    background:#16a34a;
    }
    
    #toast.error{
    background:#dc2626;
    }
    
    #toast.info{
    background:#2563eb;
    }
    
    @keyframes toastSlide{
    from{
    transform:translateX(100px);
    opacity:0;
    }
    to{
    transform:translateX(0);
    opacity:1;
    }
    }

    .seoText{
        text-align:center;
        font-size:15px;
        color:#64748b;
        line-height:1.6;
        margin:12px 0 18px;
        }
        
        .seoList{
        text-align:left;
        color:#334155;
        font-size:15px;
        line-height:1.8;
        margin:15px 0;
        padding-left:22px;
        }
        
        .homeLinks{
        display:flex;
        gap:12px;
        justify-content:center;
        flex-wrap:wrap;
        margin:20px 0;
        }
        
        .homeLinks a{
        background:#4f46e5;
        color:white;
        padding:11px 18px;
        border-radius:12px;
        text-decoration:none;
        font-weight:700;
        }
        
        .homeLinks a:nth-child(2){
        background:#0f172a;
        }
        
        .footerNav{
        display:flex;
        gap:12px;
        justify-content:center;
        flex-wrap:wrap;
        margin-top:22px;
        }
        
        .footerNav a{
        font-size:14px;
        color:#4f46e5;
        text-decoration:none;
        font-weight:600;
        }
        
        .card h2{
        text-align:center;
        font-size:20px;
        margin-top:18px;
        color:#111827;
        }

        /* ===== PAGE SCROLL FIX ===== */

body{
    min-height:100vh;
    height:auto;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding:40px 15px;
    overflow-y:auto;
    }
    
    .card{
    width:100%;
    max-width:420px;
    margin:0 auto;
    max-height:none;
    height:auto;
    overflow:visible;
    }
    
    .card h1{
    margin-top:0;
    line-height:1.2;
    }
    
    @media(max-width:600px){
    
    body{
    padding:25px 12px;
    align-items:flex-start;
    }
    
    .card{
    max-width:100%;
    }
    
    }

    .adBox{
        margin:25px 0;
        text-align:center;
        min-height:120px;
        width:100%;
        }