/*==========================================================
REGISTER PAGE
LABKESDA KOTA TANGERANG SELATAN
==========================================================*/


/*==========================================================
RESET
==========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:#fff;
    background:#08151d;
}


/*==========================================================
VARIABLE
==========================================================*/

:root{

    --primary:#0F766E;
    --primary-dark:#0A5F59;

    --blue:#2563EB;

    --green:#16A34A;

    --white:#ffffff;

    --text:#D8E4E7;

    --glass:rgba(255,255,255,.08);

    --glass-border:rgba(255,255,255,.18);

}


/*==========================================================
VIDEO
==========================================================*/

.video-background{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-2;

}

.video-background video{

    width:100%;

    height:100%;

    object-fit:cover;

}

.video-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(4,18,29,.60) 0%,
        rgba(4,18,29,.50) 45%,
        rgba(4,18,29,.20) 100%
    );

}


/*==========================================================
PAGE
==========================================================*/

.register-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:70px 0;

}

.register-container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding:0 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}


/*==========================================================
LEFT
==========================================================*/

.hero-section{

    width:58%;

    max-width:650px;

}


/*==========================================================
RIGHT
==========================================================*/

.service-section{

    width:42%;

    display:flex;

    flex-direction:column;

    gap:24px;

}


/*==========================================================
BRAND
==========================================================*/

.brand{

    display:flex;

    align-items:center;

    gap:22px;

    margin-bottom:20px;

}

.brand-logo{

    width:62px;

    height:62px;

    object-fit:contain;

    flex-shrink:0;

}

.brand-info{

    display:flex;

    flex-direction:column;

}

.brand-info span{

    color:#9ED9D1;

    font-size:18px;

    letter-spacing:2px;

    font-weight:600;

    text-transform:uppercase;

}

.brand-info h3{

    margin-top:5px;

    color:#fff;

    font-size:32px;

    font-weight:700;

    line-height:1.2;

    font-weight: bold;

}


/*==========================================================
TITLE
==========================================================*/

.hero-title{

    font-size:28px;

    line-height:1.08;

    font-weight:700;

    margin-bottom:16px;

}


/*==========================================================
DESCRIPTION
==========================================================*/

.hero-description{

    width:95%;

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}


/*==========================================================
FEATURE
==========================================================*/

.hero-feature{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.hero-feature div{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:17px;

}

.hero-feature i{

    color:#22C55E;

    font-size:20px;

}


/*==========================================================
GENERAL IMAGE
==========================================================*/

img{

    display:block;

    max-width:100%;

}


/*==========================================================
LINK
==========================================================*/

a{

    text-decoration:none;

}

a:hover{

    text-decoration:none;

}

/*==========================================================
SERVICE CARD
==========================================================*/

.service-card{

    position:relative;

    overflow:hidden;

    padding:30px;

    border-radius:26px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    transition:.35s ease;

    box-shadow:
        0 15px 40px rgba(0,0,0,.28);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 60px rgba(0,0,0,.35);

}


/*==========================================================
TOP COLOR
==========================================================*/

.service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

}

.service-card.medik::before{

    background:linear-gradient(90deg,#3B82F6,#2563EB);

}

.service-card.kesmas::before{

    background:linear-gradient(90deg,#22C55E,#16A34A);

}


/*==========================================================
ICON
==========================================================*/

.service-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    font-size:32px;

}

.service-card.medik .service-icon{

    background:#EAF2FF;

    color:#2563EB;

}

.service-card.kesmas .service-icon{

    background:#ECFDF5;

    color:#16A34A;

}


/*==========================================================
CONTENT
==========================================================*/

.service-type{

    display:inline-block;

    margin-bottom:10px;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#A7D8D1;

}

.service-content h2{

    font-size:34px;

    font-weight:700;

    margin-bottom:15px;

}

.service-content p{

    color:rgba(255,255,255,.82);

    line-height:1.8;

    font-size:16px;

    margin-bottom:30px;

}


/*==========================================================
BUTTON
==========================================================*/

.btn-service{

    width:100%;

    height:56px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.service-card.medik .btn-service{

    background:linear-gradient(135deg,#3B82F6,#2563EB);

}

.service-card.kesmas .btn-service{

    background:linear-gradient(135deg,#22C55E,#16A34A);

}

.btn-service:hover{

    color:#fff;

    transform:translateY(-2px);

}

.btn-service i{

    transition:.3s;

}

.btn-service:hover i{

    transform:translateX(6px);

}


/*==========================================================
ANIMATION
==========================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-section{

    animation:fadeUp .8s ease;

}

.service-card:nth-child(1){

    animation:fadeUp 1s ease;

}

.service-card:nth-child(2){

    animation:fadeUp 1.2s ease;

}


/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .register-container{

        gap:60px;

    }

    .hero-title{

        font-size:52px;

    }

}

@media(max-width:992px){

    .register-container{

        flex-direction:column;

        text-align:left;

    }

    .hero-section,
    .service-section{

        width:100%;

        max-width:700px;

    }

    .brand{

        justify-content:center;

    }

    .hero-feature{

        align-items:left;

    }

}

@media(max-width:768px){

    .register-page{

        padding:50px 0;

    }

    .register-container{

        padding:0 20px;

    }

    .brand{

        flex-direction:column;

        gap:15px;

    }

    .brand-info{

        align-items:center;

    }

    .brand-info h3{

        font-size:24px;
        align-items:left;

    }

    .hero-title{

        font-size:40px;

    }

    .hero-description{

        width:100%;

        font-size:16px;
        align-items:left;

    }

    .service-card{

        padding:24px;
        align-items:left;

    }

    .service-content h2{

        font-size:28px;

    }

}

/*==========================================================
PREMIUM EFFECT
==========================================================*/

/* Glow saat hover */
.service-card:hover{

    border-color:rgba(255,255,255,.35);

}

.service-card.medik:hover{

    box-shadow:
        0 25px 60px rgba(37,99,235,.25);

}

.service-card.kesmas:hover{

    box-shadow:
        0 25px 60px rgba(22,163,74,.25);

}


/*==========================================================
BUTTON EFFECT
==========================================================*/

.btn-service{

    position:relative;

    overflow:hidden;

}

.btn-service::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:80%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transition:.8s;

}

.btn-service:hover::before{

    left:140%;

}


/*==========================================================
HERO EFFECT
==========================================================*/

.hero-title{

    text-shadow:

        0 15px 35px rgba(0,0,0,.45);

}

.hero-description{

    text-shadow:

        0 5px 15px rgba(0,0,0,.25);

}


/*==========================================================
FEATURE
==========================================================*/

.hero-feature div{

    transition:.3s;

}

.hero-feature div:hover{

    transform:translateX(8px);

}

.hero-feature i{

    width:24px;

    text-align:center;

}


/*==========================================================
SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#13212d;

}

::-webkit-scrollbar-thumb{

    background:#0F766E;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#18a092;

}


/*==========================================================
TEXT SELECTION
==========================================================*/

::selection{

    background:#0F766E;

    color:#fff;

}


/*==========================================================
IMAGE
==========================================================*/

img{

    user-select:none;

    -webkit-user-drag:none;

}


/*==========================================================
SMALL DESKTOP
==========================================================*/

@media(max-width:1400px){

    .hero-title{

        font-size:56px;

    }

}


/*==========================================================
EXTRA SMALL
==========================================================*/

@media(max-width:480px){

    .brand-logo{

        width:55px;

        height:55px;

    }

    .brand-info span{

        font-size:11px;

    }

    .brand-info h3{

        font-size:20px;

    }

    .hero-title{

        font-size:34px;

    }

    .service-card{

        border-radius:22px;

    }

    .btn-service{

        height:52px;

    }

}

