/*==================================================
WATCH DEMO HERO
==================================================*/

.watch-demo-hero {
    padding: 100px 0;
    background: #f5f8fd;
    text-align: center;
}

.watch-demo-hero .hero-content{
    max-width:700px;
    margin:0 auto;
}

.watch-demo-hero .hero-subtitle{
      display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d39c26;
}

.watch-demo-hero h1{
    font-size:46px;
    line-height:1.2;
    margin-bottom:20px;
}

.watch-demo-hero p{
    font-size:18px;
    line-height:1.7;
    opacity:.95;
}


/*==================================================
SECTION
==================================================*/

.form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}



.form-footer {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgb(102, 102, 102);
    font-size: 14px;
    line-height: 1.7;
    width: 100%;
    max-width: 320px;
    margin-inline: auto; }

.form-footer i {
    color: rgb(8, 39, 91);
    margin-top: 3px;
}

form#watch-demo-form button#send_otp_btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 8px;
    background: rgb(8, 39, 91);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

section.watch-demo-form-sec, form#watch-demo-form button#submit_demo_form  {
    background: rgb(8, 39, 91);
}

.watch-demo-form-sec{
    padding:70px 0;
}

.watch-demo-wrapper{
    max-width:700px;
    margin:auto;
}


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

.form-card{
    background:#fff;
    border-radius:16px;
    padding:40px;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
}


/*==================================================
HEADING
==================================================*/

.form-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.form-icon{
    width:65px;
    height:65px;
    background:#1565c0;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
}

.form-heading h3{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.form-heading p{
    margin-top:6px;
    color:#666;
}


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

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    height:54px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    padding:0 16px;
    font-size:15px;
    transition:.3s;
    outline:none;
    background:#fff;
}

.form-group textarea{
    height:130px;
    padding:15px;
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#1565c0;
    box-shadow:0 0 0 3px rgba(21,101,192,.12);
}


/*==================================================
PHONE
==================================================*/

.mobile-input{
    display:flex;
    align-items:center;
}

.mobile-input .prefix{
    width:70px;
    height:54px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #dcdcdc;
    border-right:none;
    background:#f5f5f5;
    border-radius:8px 0 0 8px;
    font-weight:600;
}

.mobile-input input{
    border-radius:0 8px 8px 0;
}


/*==================================================
BUTTONS
==================================================*/

.form-group button{
    width:100%;
    height:54px;
    border:none;
    border-radius:8px;
    background:#1565c0;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.form-group button:hover{
    background:#0d47a1;
}

.form-group button:disabled{
    background:#b5b5b5;
    cursor:not-allowed;
}


/*==================================================
OTP
==================================================*/

.otp-inputs{
    display:flex;
    justify-content:space-between;
    gap:10px;
    margin-top:12px;
}

.otp-digit{
    width:52px !important;
    height:56px !important;
    text-align:center;
    font-size:22px !important;
    font-weight:700;
    padding:0 !important;
}

#verify_otp_btn.verified{
    background:#2e7d32;
}


/*==================================================
FOOTER
==================================================*/

.form-footer{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:8px;
    color:#666;
    font-size:14px;
}


/*==================================================
READ ONLY
==================================================*/

input[readonly]{
    background:#f2f2f2;
    cursor:not-allowed;
}


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

@media(max-width:767px){

.watch-demo-hero{
    padding:60px 20px;
}

.watch-demo-hero h1{
    font-size:32px;
}

.watch-demo-hero p{
    font-size:16px;
}

.form-card{
    padding:25px;
}

.form-heading{
    flex-direction:column;
    text-align:center;
}

.form-heading h3{
    font-size:24px;
}

.otp-inputs{
    gap:8px;
}

.otp-digit{
    width:44px !important;
    height:50px !important;
    font-size:20px !important;
}

.mobile-input .prefix{
    width:60px;
}

}

@media(max-width:480px){

.otp-inputs{
    justify-content:space-between;
}

.otp-digit{
    width:38px !important;
    height:46px !important;
    font-size:18px !important;
}

.watch-demo-hero h1{
    font-size:28px;
}

.form-card{
    padding:20px;
}

}