*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bro-green:#25963a;
    --bro-green-dark:#1d7f31;
    --bro-text:#1b1b1b;
    --bro-muted:#6f7782;
    --bro-border:#d9dde3;
    --bro-bg:#f3f3f3;
    --bro-card:#ffffff;
}

html, body{
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    width:100%;
    min-height:100%;
    font-family:'Inter', sans-serif;
    background:var(--bro-bg);
    color:var(--bro-text);
}

body{
    margin:0;
}

.register-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 15px;
}

.register-wrapper{
    width:100%;
    max-width:560px;
}

.register-container{
    width:100%;
}

.left-panel{
    width:100%;
}

.form-box{
    width:100%;
    max-width:400px;
    margin:0 auto;
}

.form-heading{
    text-align:center;
    margin-bottom:17px;
}

.form-heading h2{
    font-size:38px;
    line-height:1.1;
    font-weight:900;
    color:var(--bro-green);
    margin-bottom:8px;
}

.form-heading p{
    font-size:15px;
    color:var(--bro-muted);
    line-height:1.6;
}

.google-btn{
    width:100%;
    height:50px;
    border:1px solid var(--bro-border);
    background:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    color:#202124;
    font-size:16px;
    font-weight:700;
    margin-bottom:18px;
    transition:.25s ease;
}

.google-btn:hover{
    border-color:#bfc6ce;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
    transform:translateY(-1px);
}

.divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin:18px 0 16px;
    color:#9098a3;
    font-size:13px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.divider::before,
.divider::after{
    content:"";
    flex:1;
    height:1px;
    background:#d9dde3;
}

.input-group{
    position:relative;
    margin-bottom:16px;
}

.input-group label{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#374151;
    margin-bottom:8px;
}

.input-group input{
    width:100%;
    height:50px;
    border:1px solid #cfd5dc;
    border-radius:16px;
    padding:0 18px;
    font-size:16px;
    color:#1f2937;
    background:#fff;
    outline:none;
    transition:.25s ease;
}

.input-group input:focus{
    border-color:var(--bro-green);
    box-shadow:0 0 0 4px rgba(37,150,58,.10);
}

.password-group input{
    padding-right:58px;
}

.toggle-password{
    position:absolute;
    right:12px;
    bottom:11px;
    border:none;
    background:transparent;
    cursor:pointer;
    width:36px;
    height:36px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.toggle-password:hover{
    background:rgba(0,0,0,.04);
}

.toggle-password svg{
    width:22px;
    height:22px;
    stroke:#5b6470;
}

.password-note{
    margin-top:-6px;
    margin-bottom:18px;
    font-size:13px;
    color:#7a808a;
}

.register-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg, #2cab3d 0%, #218734 100%);
    color:#fff;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
    box-shadow:0 12px 28px rgba(44,171,61,.22);
}

.register-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 16px 30px rgba(44,171,61,.28);
}

.register-btn:disabled{
    opacity:.8;
    cursor:not-allowed;
}

.bottom-links{
    margin-top:16px;
    text-align:center;
    font-size:15px;
    color:#69717d;
}

.login-link{
    color:var(--bro-green);
    font-weight:800;
    text-decoration:none;
    margin-left:4px;
}

.login-link:hover{
    text-decoration:underline;
}

.msg-success,
.msg-error{
    width:100%;
    padding:13px 15px;
    border-radius:12px;
    margin-bottom:16px;
    font-size:14px;
    font-weight:600;
}

.msg-success{
    background:#ecfdf3;
    color:#067647;
    border:1px solid #abefc6;
}

.msg-error{
    background:#fff1f1;
    color:#b42318;
    border:1px solid #f3b3b3;
}

.right-panel{
    display:none;
}
.portal-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:30px;
    width:100%;
}

.portal-logo{
    display:block;
    width:300px;
    height:auto;
    object-fit:contain;
    margin:0 auto 15px auto;
}

.portal-brand h1{
    display:block;
    width:100%;
    text-align:center;
    font-size:22px;
    font-weight:900;
    color:var(--bro-green);
    line-height:1.3;
    margin:0 0 6px 0;
    text-transform:uppercase;
}

.portal-brand h2{
    display:block;
    width:100%;
    text-align:center;
    font-size:45px;
    line-height:1;
    font-weight:900;
    color:var(--bro-green);
    margin:0 0 14px 0;
    font-family:'Comic Sans MS','Trebuchet MS',cursive;
}

.portal-brand p{
    text-align:center;
    max-width:460px;
    margin:0 auto;
    color:var(--bro-muted);
    line-height:1.6;
}
@media (max-width: 768px){
    .register-page{
        padding:30px 14px;
    }

    .form-heading h2{
        font-size:30px;
    }

    .form-heading p{
        font-size:14px;
    }
}

@media (max-width: 480px){
    .form-heading h2{
        font-size:26px;
    }

    .input-group input,
    .google-btn,
    .register-btn{
        height:54px;
        font-size:15px;
    }

    .form-box{
        max-width:100%;
    }
}