:root{
    --primary:#0F766E;
    --secondary:#14B8A6;
    --light:#F0FDFA;
}

body{
    background:#f5fdfc;
    font-family:'Segoe UI',sans-serif;
}

.hero{
    background:linear-gradient(
        135deg,
        #0F766E,
        #14B8A6
    );

    color:white;
    text-align:center;

    padding:35px 20px;

    border-radius:0 0 35px 35px;

    margin-bottom:20px;
}

.logo-box{
    width:90px;
    height:90px;

    margin:auto;

    background:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:15px;
}

.card-form{

    background:white;

    border-radius:20px;

    padding:20px;

    margin-bottom:20px;

    box-shadow:
    0 8px 25px rgba(0,0,0,.06);
}

.section-title{

    font-weight:600;

    margin-bottom:15px;

    color:#0F766E;
}

.section-title i{

    margin-right:8px;
}

.form-control,
.form-select{

    border-radius:12px;

    min-height:50px;
}

.visitor-choice{

    display:flex;

    gap:15px;
}

.choice-card{

    flex:1;

    text-align:center;

    border:2px solid #ddd;

    border-radius:15px;

    padding:15px;

    cursor:pointer;

    transition:.3s;
}

.choice-card i{

    font-size:28px;

    display:block;

    margin-bottom:8px;
}

.choice-card.active{

    border-color:#14B8A6;

    background:#ecfffd;

    color:#0F766E;
}

.selfie-area{

    border:2px dashed #14B8A6;

    border-radius:20px;

    padding:40px;

    text-align:center;

    cursor:pointer;
}

.selfie-area i{

    font-size:55px;

    color:#14B8A6;
}

#signature-pad{

    width:100%;

    height:200px;

    border:2px dashed #ccc;

    border-radius:15px;
}

.btn-submit{

    width:100%;

    border:none;

    background:#0F766E;

    color:white;

    padding:15px;

    border-radius:15px;

    font-size:18px;

    font-weight:600;
}
.gejala{
    display:flex;
    gap:10px;
}

.gejala .choice-card{
    flex:1;
    padding:10px;
    border-radius:12px;
    border:2px solid #ddd;
    text-align:center;
    cursor:pointer;
    font-weight:500;
    transition:.2s;
}

.gejala .choice-card.active{
    background:#e6fffb;
    border-color:#14B8A6;
    color:#0F766E;
}
.gejala-group{
    margin-bottom:15px;
}
.choice-card.active{
    background:#14B8A6;
    color:white;
    border-color:#14B8A6;
}