*{
    box-sizing:border-box;
    font-family:Segoe UI, sans-serif;
}

body{
    background:#f2f2f2;
    font-family:Segoe UI, sans-serif;
    padding:20px;
}
.logo-box{
    text-align:center;
    /*margin-bottom:15px;*/
}

.logo-box img{
    max-width:120px;
    /*height:auto;*/
}

.form-wrapper{
    max-width:900px;
    margin:30px auto;
    background:#0c3d00;
    padding:30px;
    border-radius:12px;
    color:#fff;
}

.academy{
    text-align:center;
    color:#ffeb3b;
    /*margin-bottom:5px;*/
    margin:10px 0;
}

h3{
    text-align:center;
    margin-bottom:25px;
}

.row{
    display:flex;
    gap:20px;
    margin-bottom:15px;
}

.field{
    flex:1;
}

label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
}

input, select{
    width:100%;
    padding:12px;
    border-radius:30px;
    border:1px solid #8bc34a;
    background:transparent;
    color:#fff;
}

input::placeholder{
    color:#c8e6c9;
}

select option{
    color:#000;
}

input[type="file"]{
    padding:8px;
}

.terms{
    margin:20px 0;
    
}
.checkbox-label{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    cursor:pointer;
}

.checkbox-label input{
    width:18px;
    height:18px;
    accent-color:#d32f2f;
}

.pay-btn{
    width:100%;
    padding:15px;
    background:#ff9800;
    border:none;
    border-radius:30px;
    color:#fff;
    font-size:16px;
    margin-top:20px;
    cursor:pointer;
}

.modal{
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.6);
    z-index:9999;
}

.modal-content{
    background:#fff;
    color:#000;
    max-width:400px;
    margin:8% auto;
    padding:25px;
    border-radius:10px;
    text-align:center;
}

.close{
    float:right;
    font-size:22px;
    cursor:pointer;
}

.qr-img{
    width:100%;
    max-width:240px;
    margin:15px auto;
}

.submit-btn{
    background:#d32f2f;
}

button{
    width:30% !important;
    background:#d32f2f;
    color:#fff;
    padding:14px;
    border:none;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#b71c1c;
}

/* MOBILE */
@media(max-width:768px){
    .row{
        flex-direction:column;
    }
}
/* TABLET */
@media (max-width:1024px){
    .form-wrapper{
        padding:25px;
    }
    .row{
        gap:15px;
    }
}

/* MOBILE */
@media (max-width:768px){
    body{
        padding:10px;
    }
    
    button{
    width:100% !important;
    background:#d32f2f;
    color:#fff;
    padding:14px;
    border:none;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
}

    .form-wrapper{
        padding:20px;
        border-radius:8px;
    }

    .row{
        flex-direction:column;
    }

    input, select{
        padding:14px;
        font-size:15px;
    }

    button{
        font-size:16px;
        padding:16px;
    }
}

