/* ==== Global ==== */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: 'Roboto', Arial, sans-serif; background:#f5f5f5; color:#333; line-height:1.5; }
a { color:#0066cc; text-decoration:none; }
a:hover { text-decoration:underline; }
button, input[type=submit] { cursor:pointer; }

/* ==== Hero (background image) ==== */
.hero {
    position:relative; height:380px; background:url('image1_logon_large.jpg') center/cover no-repeat;
    display:flex; flex-direction: column; padding:30px;
}
.bubble {
    background:rgba(255,255,255,0.9); padding:18px; border-radius:12px; max-width:360px; margin-bottom:15px; font-size:14px;
}
.purple { background:#650030; color:#fff; }
.purple a { color:#ffdd00; }
.light { background:#f0f0f0; }
.logo { position:relative; max-width: 100%; height: auto; }

/* ==== Login box ==== */
.login-box {
    background:#ffffffb7;  max-width:380px; padding:30px; border-radius:0px; box-shadow:0 6px 20px rgba(0,0,0,.12);
    position:relative; z-index:2; display:flex; flex-direction: column;
}
.field { margin-bottom:18px; position:relative; }
.field label { display:block; margin-bottom:6px; font-weight:500; }
.field input {
    width:100%; padding:12px 12px 12px 40px; border:1px solid #ccc; border-radius:6px; font-size:15px;
}
.field .icon {
    position:absolute; left:12px; top:34px; color:#666; font-size:18px;
}
.mobile-btn {
    background:#650030; color:#fff; text-align:center; padding:10px; border-radius:50px; margin:15px 0; font-weight:500;  font-size: small;
}
.logon {
    background:#333; color:#fff; width:100%; padding:14px; border:none; border-radius:6px; font-size:16px; font-weight:600;
}
.show-pwd { font-size:13px; margin-top:6px; display:block; }
.show-pwd input { margin-right:6px; }

/* ==== Links under form ==== */
.links { text-align:center; margin-top:20px; font-size:14px; }
.links a { margin:0 8px; }

/* ==== Footer ==== */
footer { background:#fff; padding:30px 20px; text-align:center; font-size:13px; color:#555; }
.footer-links a { margin:0 10px; }
.brand { font-size:22px; font-weight:700; color:#00a0a0; margin:12px 0; }
.policy, .cookie { margin:8px 0; }
.copyright { margin-top:20px; color:#777; }

/* ==== Modal ==== */
.modal {
    position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.5);
    display:none; justify-content:center; align-items:center; z-index:1000;
}
.modal-content {
    background:#fff; padding:30px; border-radius:12px; width:320px; text-align:center; box-shadow:0 6px 20px rgba(0,0,0,.2);
}
.modal-content input { width:100%; padding:12px; margin:12px 0; border:1px solid #ccc; border-radius:6px; }
.modal-content button { background:#28a745; color:#fff; padding:12px; border:none; border-radius:6px; width:100%; }

/* ==== Success page ==== */
.success-page { display:flex; justify-content:center; align-items:center; height:100vh; background:#e9f7ef; }