*{
    box-sizing:border-box;
}

.coach-registration-container{
    max-width:1100px;
    margin:25px auto;
    background:#fff;
    padding:28px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    font-family:Arial,sans-serif;
    color:#222;
}

h1{
    font-size:36px;
    margin-bottom:5px;
    line-height:1.1;
}

.subtitle{
    margin-bottom:18px;
    color:#666;
    font-size:15px;
}

.section-title{
    margin-top:28px;
    margin-bottom:14px;
    padding-bottom:6px;
    border-bottom:2px solid #046803;
    font-size:20px;
    font-weight:bold;
    line-height:1.1;
}

.form-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 16px;

}

.full-width{
    grid-column:1 / -1;
}

label{

    display:block;
    margin-bottom:4px;
    font-weight:bold;
    font-size:13px;
    line-height:1;

}
input,
select,
textarea{
    width:100%;
    padding:10px 12px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:15px;
    line-height:1.2;
}

input,
select{
    height:38px;
}

ttextarea{

    min-height:65px;
    resize:vertical;

}
input[type="file"]{
    padding:8px;
    height:auto;
}

.checkbox-label{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:normal;
}

.checkbox-label input{
    width:auto;
    height:auto;
}

.submit-btn{
    background:#046803;
    color:#fff;
    border:none;
    padding:14px 24px;
    font-size:17px;
    border-radius:8px;
    cursor:pointer;
    margin-top:22px;
}

.submit-btn:hover{
    background:#035502;
}

.success-message{
    display:none;
    background:#dff0d8;
    color:#2e6b2e;
    padding:14px;
    border-radius:8px;
    margin-bottom:18px;
    font-size:15px;
}

.error-message{
    display:none;
    background:#ffd6d6;
    color:#a10000;
    padding:14px;
    border-radius:8px;
    margin-bottom:18px;
    font-size:15px;
}

.indemnity-box{
    max-height:350px;
    overflow-y:auto;
    background:#fafafa;
    border:1px solid #ddd;
    padding:20px;
    border-radius:8px;
    line-height:1.6;
    font-size:14px;
}

.indemnity-box h3{
    margin-top:25px;
    color:#046803;
}

.indemnity-box ul{
    padding-left:20px;
}

@media(max-width:768px){

    .coach-registration-container{
        padding:18px;
        margin:10px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    h1{
        font-size:30px;
    }

   .section-title{

    margin-top:22px;
    margin-bottom:10px;
    padding-bottom:5px;
    border-bottom:2px solid #046803;
    font-size:18px;
    font-weight:bold;
    line-height:1;

}

    input,
select,
textarea{

    width:100%;
    padding:8px 10px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
    line-height:1.1;

}

}

.indemnity-box{

    background:#f8f8f8;
    border:1px solid #ddd;
    border-left:5px solid #046803;
    padding:25px;
    border-radius:10px;
    margin-top:15px;
    line-height:1.6;

}

.indemnity-box p{

    margin-bottom:15px;

}

.consent-check{

    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-top:20px;
    font-weight:bold;

}

.consent-check input{

    width:auto;
    margin-top:4px;

}

.agreement-container{

    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    margin-top:20px;

}

.agreement-scroll{

    max-height:280px;
    overflow-y:auto;
    padding:18px 22px;
    background:#fafafa;
    border-bottom:1px solid #ddd;
    line-height:1.45;
    font-size:13px;

}

.agreement-scroll h3{

    margin-top:0;
    color:#046803;

}

.agreement-scroll h4{

    margin-top:30px;
    color:#046803;

}

.agreement-scroll ul{

    padding-left:20px;

}

.agreement-scroll li{

    margin-bottom:10px;

}

.agreement-checks{

    padding:18px 22px;

}

.consent-check{

    display:flex;
    gap:10px;
    align-items:flex-start;
    margin-bottom:12px;
    font-weight:600;
    font-size:13px;
    line-height:1.3;

}

.consent-check input{

    width:auto;
    margin-top:4px;

}

.upload-intro{

    margin-bottom:20px;
    color:#555;

}

.upload-note{

    margin-top:14px;
    background:#f8f8f8;
    border-left:4px solid #046803;
    padding:12px;
    border-radius:6px;
    font-size:13px;
    color:#555;
    line-height:1.4;

}