*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f3f4f6;
min-height:100vh;
padding-top:65px;
}

/* CONTAINER */

.signup-container{
display:grid;
grid-template-columns:1fr 1fr;
min-height:100vh;
 padding-top:10px;
}

/* RIGHT */

.signup-right{
display:flex;
align-items:center;
justify-content:center;
padding:40px;
}

.signup-card{
background:white;
width:100%;
max-width:500px;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.top{
margin-bottom:30px;
}

.top h2{
font-size:34px;
margin-bottom:10px;
color:#111827;
}

.top p{
color:#6b7280;
}

/* FORM */

.input-group{
margin-bottom:22px;
}

.input-group label{
display:block;
margin-bottom:8px;
font-size:14px;
font-weight:600;
color:#111827;
}

.input-group input{
width:100%;
padding:14px;
border:1px solid #d1d5db;
border-radius:10px;
font-size:15px;
outline:none;
transition:0.3s;
}

.input-group input:focus{
border-color:#f59e0b;
box-shadow:0 0 0 4px rgba(245,158,11,0.15);
}

/* PASSWORD */

.password-wrapper{
position:relative;
}

.toggle-password{
position:absolute;
right:15px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
}

/* ERRORS */

.field-error{
display:block;
margin-top:6px;
font-size:13px;
color:red;
}

/* TERMS */

.terms{
display:flex;
align-items:center;
gap:10px;
font-size:14px;
margin-bottom:25px;
}

.terms a{
color:#f59e0b;
text-decoration:none;
}

/* BUTTON */

.signup-btn{
width:100%;
padding:15px;
border:none;
border-radius:12px;
background:#111827;
color:white;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.signup-btn:hover{
background:#f59e0b;
color:black;
}

/* LOGIN */

.bottom-text{
text-align:center;
margin-top:25px;
font-size:14px;
}

.bottom-text a{
color:#f59e0b;
text-decoration:none;
font-weight:600;
}

/* PASSWORD STRENGTH */

.strength{
height:6px;
background:#e5e7eb;
border-radius:20px;
margin-top:10px;
overflow:hidden;
}

.strength-bar{
height:100%;
width:0;
transition:0.3s;
}

.strength-text{
display:block;
margin-top:8px;
font-size:13px;
}

/* SERVER MESSAGE */

.server-message{
background:#fee2e2;
color:#991b1b;
padding:12px;
border-radius:8px;
margin-bottom:20px;
font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

.signup-container{
grid-template-columns:1fr;
}

.signup-left{
display:none;
}

}

@media(max-width:576px){

.signup-right{
padding:20px;
}

.signup-card{
padding:25px;
}

.top h2{
font-size:28px;
}

}