*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Noto Sans Devanagari",sans-serif;
}

body{
    background:#f4f6fb;
    color:#222;
    padding:30px;
}

.form-page{
    max-width:1200px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.form-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    border-bottom:3px solid #1d4ed8;
    padding-bottom:20px;
    margin-bottom:25px;
}

.form-header h1{
    color:#0b3b91;
    font-size:34px;
    margin-bottom:8px;
}

.form-header p{
    color:#444;
    font-size:20px;
    font-weight:600;
}

.photo-box{
    width:160px;
    height:190px;
    border:2px dashed #666;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    cursor:pointer;
    background:#fafafa;
    border-radius:8px;
    overflow:hidden;
}

.photo-box input{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.photo-box span{
    font-size:15px;
    color:#555;
    line-height:24px;
}

.top-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:25px;
}

section{
    margin-bottom:35px;
}

section h2{
    background:#0b3b91;
    color:#fff;
    padding:10px 15px;
    border-radius:6px;
    margin-bottom:20px;
    font-size:20px;
}

.notice-text{
    line-height:32px;
    text-align:justify;
    font-size:17px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

label{
    display:flex;
    flex-direction:column;
    font-weight:600;
    gap:8px;
}

input,
textarea,
select{
    padding:12px;
    border:1px solid #bbb;
    border-radius:6px;
    font-size:16px;
    width:100%;
}

textarea{
    min-height:100px;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#0b3b91;
    color:#fff;
    padding:12px;
    border:1px solid #ccc;
}

table td{
    border:1px solid #ccc;
    padding:8px;
}

table td input{
    border:none;
    padding:8px;
}

.nominee-photo{
    margin-top:20px;
}

.declaration{
    line-height:30px;
    text-align:justify;
    margin-bottom:15px;
}

.agree{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:17px;
}

.agree input{
    width:22px;
    height:22px;
}

.actions{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:40px;
}

.actions button,
.actions a{
    padding:14px 30px;
    border:none;
    border-radius:8px;
    background:#0b3b91;
    color:#fff;
    text-decoration:none;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

.actions button:hover,
.actions a:hover{
    background:#e11d48;
}

@media(max-width:900px){

.form-header{
    flex-direction:column;
    gap:20px;
}

.grid{
    grid-template-columns:1fr;
}

.top-info{
    grid-template-columns:1fr;
}

.photo-box{
    margin:auto;
}

body{
    padding:10px;
}

.form-page{
    padding:20px;
}

}