*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#eef3fb;
}

.page-wrapper{
    width:100%;
    max-width:420px;
    margin:30px auto;
}

.header{
    display:flex;
    align-items:center;
    background:#fff;
    padding:15px;
    border-radius:10px 10px 0 0;
}

.logo img{
    width:70px;
}

.title h2{
    font-size:20px;
    color:#2563eb;
    line-height:24px;
    margin-left:10px;
}

.login-card{
    background:#fff;
    padding:25px;
    border-radius:0 0 10px 10px;
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.login-card h3{
    text-align:center;
    color:#2563eb;
    font-size:26px;
}

.sub{
    text-align:center;
    margin-bottom:20px;
    color:#333;
    font-weight:600;
}

.input-box{
    display:flex;
    align-items:center;
    background:#f8fafc;
    border-radius:8px;
    padding:10px;
    margin-bottom:15px;
}

.input-box .icon{
    margin-right:10px;
    color:#2563eb;
}

.input-box input{
    border:none;
    outline:none;
    width:100%;
    background:transparent;
    font-size:14px;
}

.eye{
    cursor:pointer;
}

.captcha-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px;
}

.captcha-row img{
    height:40px;
}

.cap-icons{
    color:#2563eb;
    font-size:18px;
}

.login-btn{
    width:100%;
    background:#ff33cc;
    color:#fff;
    padding:12px;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.login-btn:hover{
    background:#4f6ef5;
}

.links{
    margin-top:15px;
    text-align:center;
    font-size:14px;
}

.links-row{
    display:flex;
    justify-content:space-between;
    margin-top:12px;
    font-size:13px;
}

.links-row a{
    color:#2563eb;
    text-decoration:none;
}

.red{
    color:red !important;
    font-weight:600;
}

.footer-text{
    margin-top:15px;
    font-size:12px;
    text-align:center;
    color:red;
}

.error{
    background:#ffe5e5;
    color:red;
    padding:8px;
    border-radius:6px;
    margin-bottom:10px;
    text-align:center;
}
