.ticc-register-form{
    max-width:1100px;
    margin:40px auto;
    padding:35px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.ticc-register-form h2{
    text-align:center;
    margin-bottom:30px;
}

/* TWO COLUMNS */
.ticc-row{
    display:flex;
    gap:30px;
    margin-bottom:20px;
}

.ticc-column{
    flex:1;
}

.ticc-column label{
    display:block;
    margin-bottom:6px;
    margin-top:15px;
    font-weight:600;
}

.ticc-column input,
.ticc-column select{
    width:100%;
    height:48px;
    padding:10px 15px;
    border:1px solid #ccc;
    border-radius:6px;
    box-sizing:border-box;
}

/* PHOTO */
.member-photo{
    margin-top:30px;
}

.member-photo label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.member-photo input[type=file]{
    width:100%;
    padding:12px;
    border:1px dashed #bbb;
    border-radius:8px;
    background:#fafafa;
}

/* BUTTON */
.ticc-submit{
    text-align:center;
    margin-top:35px;
}

.ticc-submit input{
    width:260px;
    height:50px;
    background:#0056d6;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

.ticc-submit input:hover{
    background:#003fa3;
}

/* MOBILE */
@media(max-width:768px){

.ticc-register-form{
    padding:20px;
}

.ticc-row{
    flex-direction:column;
    gap:0;
}

.ticc-column{
    width:100%;
}

.ticc-column label{
    margin-top:18px;
}

.ticc-submit input{
    width:100%;
}

}
