/* ==========================================
   AGENT REGISTER PAGE
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fb;
    color:#333;
    line-height:1.6;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ==========================================
   PAGE HERO
========================================== */

.page-banner{
    position:relative;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/agent-banner.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:90px 20px;
    overflow:hidden;
}

.banner-overlay{
    position:absolute;
    inset:0;
}

.banner-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.banner-content .tag{
    display:inline-block;
    background:#f7b731;
    color:#222;
    font-size:14px;
    font-weight:600;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:18px;
}

.banner-content h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.banner-content p{
    font-size:17px;
    opacity:.95;
    max-width:600px;
}

/* ==========================================
   REGISTER SECTION
========================================== */

.agent-register{
    padding:80px 0;
}

.register-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:flex-start;
}

/* ==========================================
   LEFT SIDE
========================================== */

.register-info h2{
    font-size:38px;
    margin-bottom:18px;
    color:#222;
    font-weight:700;
}

.register-info>p{
    color:#666;
    margin-bottom:35px;
    font-size:16px;
}

.features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.feature{
    display:flex;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-5px);
}

.feature i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f7b731;
    color:#fff;
    font-size:22px;
    flex-shrink:0;
}

.feature h4{
    font-size:20px;
    margin-bottom:8px;
    color:#222;
}

.feature p{
    color:#666;
    font-size:15px;
}

/* ==========================================
   REGISTER CARD
========================================== */

.register-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.register-card h3{
    font-size:30px;
    color:#222;
    margin-bottom:10px;
    font-weight:700;
}

.register-card>p{
    color:#666;
    margin-bottom:25px;
}

/* ==========================================
   ALERTS
========================================== */

.alert{
    padding:14px 18px;
    border-radius:8px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:500;
}

.alert.success{
    background:#e8f8ee;
    color:#1b7f43;
    border:1px solid #b7ebc9;
}

.alert.error{
    background:#ffeaea;
    color:#c62828;
    border:1px solid #f5b5b5;
}

/* ==========================================
   FORM
========================================== */

.form-grid{
    display:grid;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    height:52px;
    padding:0 16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    transition:.3s;
    background:#fff;
}

.form-group input:focus{
    border-color:#f7b731;
    outline:none;
    box-shadow:0 0 0 3px rgba(247,183,49,.15);
}

/* ==========================================
   PASSWORD BOX
========================================== */

.password-box{
    position:relative;
}

.password-box input{
    padding-right:55px;
}

.togglePassword{
    position:absolute;
    right:15px;
    top:42px;
    border:none;
    background:none;
    cursor:pointer;
    color:#777;
    font-size:18px;
}

.togglePassword:hover{
    color:#f7b731;
}

/* ==========================================
   PLAN HEADING
========================================== */

.plan-heading{
    margin:30px 0 20px;
    font-size:22px;
    color:#222;
    font-weight:700;
}

/* ==========================================
   REGISTER BUTTON
========================================== */

.register-btn{
    width:100%;
    height:55px;
    margin-top:30px;
    border:none;
    border-radius:8px;
    background:#f7b731;
    color:#222;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.register-btn:hover{
    background:#e5a800;
    transform:translateY(-2px);
}

.register-btn i{
    margin-right:8px;
}

/* ==========================================
   LOGIN LINK
========================================== */

.login-link{
    text-align:center;
    margin-top:25px;
    font-size:15px;
    color:#666;
}

.login-link a{
    color:#f7b731;
    font-weight:600;
    text-decoration:none;
}

.login-link a:hover{
    text-decoration:underline;
}
/* ==========================================
   PLAN GRID
========================================== */

.plan-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:20px;
}

/* ==========================================
   PLAN CARD
========================================== */

.plan-card{
    position:relative;
    background:#fff;
    border:2px solid #e5e5e5;
    border-radius:16px;
    padding:25px 20px;
    cursor:pointer;
    transition:all .3s ease;
}

.plan-card:hover{
    transform:translateY(-6px);
    border-color:#f7b731;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.plan-card.selected{
    border-color:#f7b731;
    background:#fffdf5;
    box-shadow:0 15px 35px rgba(247,183,49,.18);
}

.plan-card h3{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
    font-weight:700;
}

.price{
    font-size:32px;
    font-weight:700;
    color:#f7b731;
    margin-bottom:20px;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.plan-card ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#555;
    font-size:15px;
}

.plan-card ul li i{
    color:#28a745;
}

/* ==========================================
   PLAN BADGES
========================================== */

.plan-badge{
    position:absolute;
    top:15px;
    right:15px;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    color:#fff;
}

.plan-badge.free{
    background:#28a745;
}

.plan-badge.premium{
    background:#ff9800;
}

/* ==========================================
   SELECT BUTTON
========================================== */

.select-plan{
    width:100%;
    height:46px;
    border:none;
    border-radius:8px;
    margin-top:20px;
    background:#222;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.select-plan:hover{
    background:#f7b731;
    color:#222;
}

.plan-card.selected .select-plan{
    background:#f7b731;
    color:#222;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.register-wrapper{
    grid-template-columns:1fr;
}

.register-info{
    order:2;
}

.register-card{
    order:1;
}

.plan-grid{
    grid-template-columns:1fr 1fr;
}

.banner-content h1{
    font-size:36px;
}

.register-info h2{
    font-size:32px;
}

}

@media(max-width:768px){

.page-banner{
    padding:70px 20px;
}

.banner-content h1{
    font-size:30px;
}

.banner-content p{
    font-size:15px;
}

.register-card{
    padding:25px;
}

.plan-grid{
    grid-template-columns:1fr;
}

.feature{
    flex-direction:column;
    text-align:center;
}

.feature i{
    margin:auto;
}

}

@media(max-width:576px){

.agent-register{
    padding:50px 0;
}

.container{
    padding:0 15px;
}

.register-card{
    padding:20px;
}

.register-card h3{
    font-size:24px;
}

.register-info h2{
    font-size:26px;
}

.banner-content h1{
    font-size:26px;
}

.banner-content .tag{
    font-size:12px;
}

.price{
    font-size:28px;
}

.form-group input{
    height:48px;
}

.register-btn{
    height:50px;
    font-size:16px;
}

.plan-card{
    padding:20px 18px;
}

}