*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

/* Background */
body{
    background:#f5f9ff;
}

/* Header Layout (Centered) */
.header{
    background:#0058ff;
    padding:18px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    color:white;
}

/* Logo */
.logo {
    width: 75px;
    height: 75px;
    object-fit:contain;
    margin-bottom: 6px;
}

/* Title, Motto, Address */
.title {
    font-size: 30px;
    font-weight: 800;
    color: white;
}

.motto {
    font-size: 14px;
    color: #e3eaff;
    margin-top:3px;
}

.address {
    font-size: 13px;
    color: #cfe0ff;
    margin-top:2px;
}

/* Main Content Wrapper */
.page-container{
    width:95%;
    max-width:900px;
    margin:35px auto;
}

/* Menu Grid */
.menu-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

/* Tile (App-Style Buttons) */
.menu-box{
    width:170px;
    height:140px;
    background:white;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border:1px solid #d9e4ff;
    box-shadow:0px 3px 10px rgba(0,0,0,0.06);
    text-decoration:none;
    transition:.25s;
}

.menu-box:hover{
    transform:translateY(-4px);
    box-shadow:0px 6px 18px rgba(0,0,0,0.12);
    border-color:#0058ff;
}

.menu-icon{
    font-size:35px;
    margin-bottom:8px;
}

.menu-text{
    text-align:center;
    font-size:15px;
    color:#0058ff;
    font-weight:600;
}

/* Footer */
.footer{
    background:#eee;
    padding:10px;
    text-align:center;
    margin-top:40px;
    font-size:14px;
}

/* ✅ Android / Small Screen Optimization */
@media(max-width:600px){
    .menu-box{
        width:45%;
        height:130px;
    }
    .title { font-size:22px; }
    .logo { width:60px; height:60px; }
}

/* -----------------------------------------------------------
   ✅ REGISTER FORM STYLING (What was missing before)
----------------------------------------------------------- */

.form-title{
    text-align:center;
    margin-bottom:18px;
    font-size:20px;
    color:#0058ff;
    font-weight:700;
}

.form-box{
    background:white;
    padding:20px;
    border-radius:10px;
    width:95%;
    max-width:500px;
    margin:auto;
    box-shadow:0px 3px 10px rgba(0,0,0,0.08);
    border:1px solid #dfe8ff;
}

.input{
    width:100%;
    padding:10px;
    margin-top:5px;
    margin-bottom:15px;
    border:1px solid #cdd9ff;
    border-radius:6px;
    font-size:14px;
}

.btn-submit{
    width:100%;
    padding:12px;
    border:none;
    background:#0058ff;
    color:white;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    margin-top:10px;
}

.btn-submit:hover{
    background:#003eac;
}

/* Signature Pad */
#signature-pad{
    width:100% !important;
    max-width:400px;
    display:block;
    margin:auto;
    border:1px solid #ccc;
    border-radius:6px;
    background:white;
}
