*{
box-sizing:border-box;
font-family:Inter, Arial, sans-serif;
}

/* REMOVE WORDPRESS PADDING */

body{
margin:0 !important;
padding:0 !important;
}

#page,
.site,
.site-content,
.content-area,
.elementor-section,
.elementor-container{
margin:0 !important;
padding:0 !important;
max-width:100% !important;
}

.site-header,
.site-footer{
display:none !important;
}


/* MAIN LAYOUT */

.weep-login-layout{
display:flex;
height:100vh;
width:100%;
}


/* LEFT SIDE */

.weep-login-left{
flex:1;
background:linear-gradient(135deg,#7c3aed,#9333ea,#c084fc);
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
padding:40px;
}

.weep-brand img{
height:60px;
margin-bottom:20px;
}

.weep-brand h1{
font-size:42px;
margin:10px 0;
font-weight:700;
}

.weep-brand p{
font-size:18px;
opacity:0.9;
}


/* RIGHT SIDE */

.weep-login-right{
flex:1;
background:#f8fafc;
display:flex;
align-items:center;
justify-content:center;
}


/* LOGIN CARD */

.weep-form-card{
width:380px;
background:white;
padding:45px;
border-radius:12px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
min-height:420px;
}

.weep-form-card h2{
font-size:26px;
margin-bottom:5px;
}

.weep-form-card p{
color:#666;
margin-bottom:25px;
}


/* TABS */

.weep-tabs{
display:flex;
margin-bottom:25px;
}

.weep-tabs button{
flex:1;
padding:12px;
border:none;
background:#e5e7eb;
cursor:pointer;
font-weight:600;
}

.weep-tabs button.active{
background:#111827;
color:white;
}


/* FORMS */

.weep-form{
display:none;
}

.weep-form.active{
display:block;
}

.weep-form-card input{
width:100%;
padding:14px;
margin-bottom:15px;
border-radius:6px;
border:1px solid #ddd;
font-size:15px;
}


/* BUTTON */

.weep-btn{
width:100%;
padding:14px;
background:#f59e0b;
border:none;
color:white;
border-radius:6px;
font-size:15px;
font-weight:600;
cursor:pointer;
}

.weep-btn:hover{
background:#d97706;
}


/* MOBILE */

@media(max-width:900px){

.weep-login-layout{
flex-direction:column;
}

.weep-login-left{
height:250px;
}

.weep-form-card{
width:90%;
}

}
.weep-dashboard{
padding:40px;
max-width:1100px;
margin:auto;
}

.weep-dashboard-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.weep-dashboard-header h2{
margin:0;
}

.weep-logout{
background:#ef4444;
color:white;
padding:8px 14px;
border-radius:6px;
text-decoration:none;
}

.weep-dashboard-body h3{
margin-bottom:20px;
}

.weep-exam-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:400px;
}

.weep-exam-card h4{
margin-bottom:10px;
}

.weep-start-btn{
display:inline-block;
margin-top:15px;
background:#7c3aed;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
}