/* ==========================================================
   WorldLink Registration Page
========================================================== */

body{

    background:linear-gradient(135deg,#eef8ee,#d9f1dc);

}

/* ==========================
        LEFT PANEL
========================== */

.register-logo{

    width:220px;

}

.register-title{

    color:#2e7d32;

    font-size:2.2rem;

    font-weight:700;

}

.register-subtitle{

    color:#666;

    margin-bottom:20px;

}

.register-description{

    color:#555;

    font-size:1.05rem;

    line-height:1.8;

}

.feature-icon{

    font-size:2rem;

    color:#2e7d32;

    margin-bottom:10px;

}

/* ==========================
        CARD
========================== */

.register-card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.register-header{

    background:linear-gradient(
        90deg,
        #43a047,
        #2e7d32,
        #1b5e20
    );

    color:white;

    text-align:center;

    padding:25px;

}

.register-header h3{

    margin:0;

    font-weight:700;

}

.register-body{

    padding:35px;

    background:white;

}

/* ==========================
        FORM
========================== */

.form-label{

    font-weight:600;

    color:#333;

}

.form-control{

    border-radius:10px;

    padding:12px 15px;

    border:1px solid #ced4da;

    transition:.25s;

}

.form-control:focus{

    border-color:#2e7d32;

    box-shadow:0 0 0 .2rem rgba(46,125,50,.15);

}

/* ==========================
        BUTTON
========================== */

.btn-register{

    background:#2e7d32;

    border:none;

    border-radius:10px;

    font-weight:600;

    padding:13px;

}

.btn-register:hover{

    background:#1b5e20;

}

/* ==========================
        RESPONSIVE
========================== */

@media(max-width:991px){

    .register-info{

        display:none;

    }

    .register-body{

        padding:28px;

    }

}

@media(max-width:576px){

    .register-body{

        padding:20px;

    }

}