/*=========================================
REGISTER PAGE
=========================================*/

.register-section{
    padding:80px 0;
    background:#f5f7fb;
    min-height:calc(100vh - 180px);
    display:flex;
    align-items:center;
}

.register-section .container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.register-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

.register-header{
    text-align:center;
    margin-bottom:35px;
}

.register-header h2{
    font-size:32px;
    color:#111827;
    font-weight:700;
    margin-bottom:10px;
}

.register-header p{
    color:#6b7280;
    font-size:16px;
}

.row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:15px;
    font-weight:600;
    color:#374151;
    margin-bottom:8px;
}

.form-group label span{
    color:#ef4444;
}

.form-group input{
    width:100%;
    height:55px;
    padding:0 18px;
    border:1px solid #d1d5db;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.form-group input:focus{
    border-color:#25D366;
    box-shadow:0 0 0 4px rgba(37,211,102,.12);
}

.register-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:10px;
    background:#25D366;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    margin-top:10px;
}

.register-btn:hover{
    background:#1faa52;
}

.login-text{
    text-align:center;
    margin-top:25px;
    color:#6b7280;
    font-size:15px;
}

.login-text a{
    color:#25D366;
    font-weight:600;
    text-decoration:none;
}

.login-text a:hover{
    text-decoration:underline;
}

/*=========================================
ALERTS
=========================================*/

.alert{
    padding:14px 18px;
    border-radius:8px;
    margin-bottom:20px;
    font-size:15px;
}

.alert-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
}

.alert-danger{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fca5a5;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .register-card{
        padding:30px;
    }

    .row{
        grid-template-columns:1fr;
        gap:18px;
    }

}

@media(max-width:768px){

    .register-section{
        padding:50px 15px;
    }

    .register-card{
        padding:25px;
        border-radius:12px;
    }

    .register-header h2{
        font-size:26px;
    }

    .register-header p{
        font-size:14px;
    }

    .form-group input{
        height:50px;
    }

    .register-btn{
        height:52px;
        font-size:16px;
    }

}

@media(max-width:480px){

    .register-card{
        padding:20px;
    }

    .register-header h2{
        font-size:22px;
    }

}