﻿/* ===============================
   Indira Gas Dealer Form
================================= */


.dealer-form-section{
    padding:60px 20px;
    background:#f7f7f7;
}



.dealer-form-container{

    max-width:1100px;
    margin:auto;
    background:#ffffff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);

}



.form-header h2{

    font-size:28px;
    color:#151515;
    line-height:1.4;
    margin-bottom:10px;
    font-weight:700;

}



.form-header p{

    color:#777;
    font-size:14px;
    margin-bottom:30px;

}




/* Input Area */


.form-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:25px;

}



.form-group input{

    width:100%;
    padding:15px;
    border:1px solid #ddd;
    outline:none;
    font-size:14px;
    transition:.3s;

}


.form-group input:focus{

    border-color:#e30613;

}



/* Declaration Box */


.declaration-box{

    height:350px;
    overflow-y:auto;
    border:1px solid #ddd;
    padding:25px;
    background:#fafafa;
    color:#666;
    font-size:15px;
    line-height:1.8;
    border-radius:8px;

}



.declaration-box::-webkit-scrollbar{

    width:8px;

}


.declaration-box::-webkit-scrollbar-thumb{

    background:#ccc;
    border-radius:10px;

}




/* Checkbox */


.consent-check{

    margin:25px 0;
    font-size:14px;
    color:#666;

}


.consent-check input{

    width:16px;
    height:16px;
    margin-right:8px;

}




/* Button */


.continue-btn{

    background:#e30613;
    color:white;
    border:none;
    padding:15px 35px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.3s;

}


.continue-btn:hover{

    background:#b8000c;
    transform:translateY(-3px);

}



/* ===============================
        Mobile Responsive
================================= */


@media(max-width:768px){


.dealer-form-section{

    padding:30px 15px;

}


.dealer-form-container{

    padding:25px 18px;
    border-radius:10px;

}



.form-header h2{

    font-size:21px;

}



.form-grid{

    grid-template-columns:1fr;
    gap:15px;

}



.declaration-box{

    height:300px;
    padding:18px;
    font-size:14px;

}



.continue-btn{

    width:100%;
    justify-content:center;

}


}