/* ===========================
   SigmaLube Lead Form
=========================== */

.sl-form-wrapper{
    max-width:700px;
    margin:40px auto;
    background:#fff;
    border-radius:16px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    border:1px solid #e9ecef;
}

.sl-form-header{
    text-align:center;
    margin-bottom:45px;
}

.sl-form-header h2{
    margin:0 0 12px;
    font-size:36px;
    font-weight:700;
    color:#17325c;
    line-height:1.2;
}

.sl-form-header p{
    max-width:560px;
    margin:0 auto;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

.sl-success{
    max-width:700px;
    margin:20px auto;
    background:#ecfdf5;
    border:1px solid #10b981;
    color:#065f46;
    padding:18px;
    border-radius:10px;
}

.sl-form-group{
    margin-bottom:22px;
}

.sl-form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#1e293b;
}

.sl-form-group label span{
    color:#dc2626;
}

.sl-input,
.sl-textarea{

    width:100%;
    box-sizing:border-box;

    padding:15px 18px;

    border:2px solid #e2e8f0;
    border-radius:12px;

    background:#f8fafc;

    font-size:15px;
    color:#1e293b;

    transition:all .25s ease;

}

.sl-input::placeholder,
.sl-textarea::placeholder{

    color:#94a3b8;

}

.sl-input:hover,
.sl-textarea:hover{

    border-color:#cbd5e1;

}

.sl-input:focus,
.sl-textarea:focus{

    outline:none;

    background:#fff;

    border-color:#005bbb;

    box-shadow:0 0 0 5px rgba(0,91,187,.12);

}

.sl-textarea{

    resize:vertical;
    min-height:120px;

}

.sl-checkbox-group{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:12px;

}

.sl-checkbox-group label{

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;

    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:12px;

    padding:18px;

    cursor:pointer;
    transition:.2s;

    min-height:95px;

}

.sl-checkbox-group label:hover{

    background:#eef6ff;
    border-color:#005bbb;

}

.sl-checkbox-group input{

    margin:0;
    transform:scale(1.25);

}

.sl-checkbox-group label span{
    display:block;
    width:100%;
    font-weight:600;
}

.sl-note{

    margin:25px 0;
    background:#f8fafc;
    border-left:4px solid #005bbb;
    padding:15px;
    border-radius:8px;
    color:#475569;
    font-size:14px;
    line-height:1.6;

}

.sl-button{

    width:100%;
    background:#005bbb;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:16px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;

}

.sl-button:hover{

    background:#00489a;
    transform:translateY(-2px);

}

/* ===========================
   Radio Product Card
=========================== */

.sl-radio-group{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:15px;
}

.sl-radio-card{
    position:relative;
    cursor:pointer;
}

.sl-radio-card input{
    position:absolute;
    opacity:0;
}

.sl-radio-card span{
    display:block;
    padding:18px;
    border:2px solid #dbe3eb;
    border-radius:12px;
    background:#fff;
    font-weight:600;
    color:#334155;
    transition:.25s;
    text-align:center;
}

.sl-radio-card:hover span{
    border-color:#005bbb;
    background:#f3f8ff;
    transform:translateY(-2px);
}

.sl-radio-card input:checked + span{
    border-color:#005bbb;
    background:#005bbb;
    color:#fff;
    box-shadow:0 8px 20px rgba(0,91,187,.25);
}

/* Input "Lainnya" */

#other_text{
    margin-top:15px;
}

/* Mobile */

@media(max-width:768px){

    .sl-radio-group{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .sl-form-wrapper{

        padding:25px;
        margin:20px 15px;

    }

    .sl-form-header h2{

        font-size:26px;

    }

    .sl-checkbox-group{

        grid-template-columns:1fr;

    }

}