 @font-face {
     font-family: Nunito;
     src: url('https://mezasu.com/fonts/Nunito-Regular.woff2') format('woff2'), url('https://mezasu.com/fonts/Nunito-Regular.woff') format('woff');
     font-weight: 400;
     font-style: normal;
     font-display: swap
 }
 
 :root {
     --bg: #ffffff;
     --card: #f5f5f5;
     --accent: #0091ff;
     --text: #333333;
     --muted: #666666;
 }
 
 * {
     box-sizing: border-box;
 }
 
 body {
     margin: 0;
     min-height: 100vh;
     display: grid;
     place-items: center;
     font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
     background: var(--bg);
     color: var(--text);
 }
 
 .card {
     width: 100%;
     max-width: 360px;
     background: var(--card);
     padding: 2rem;
     border-radius: 15px;
 }
 
 h1 {
     margin: 0 0 1.25rem;
     font-size: 1.35rem;
 }
 
 label {
     display: block;
     font-size: .8rem;
     color: var(--muted);
     margin: .75rem 0 .25rem;
 }
 
 input {
     width: 100%;
     padding: .6rem .75rem;
     border-radius: 15px;
     border: none;
     background: #ffffff;
     color: var(--text);
     font-size: .95rem;
 }
 
 button {
     width: 100%;
     margin-top: 1.25rem;
     padding: .7rem;
     border: 0;
     border-radius: 15px;
     background: var(--accent);
     color: #fff;
     font-size: .95rem;
     font-weight: 600;
     cursor: pointer;
 }
 
 button:hover {
     filter: brightness(1.08);
 }
 
 button.secondary {
     background: #334155;
 }
 
 .links {
     margin-top: 1rem;
     font-size: .82rem;
     display: flex;
     justify-content: space-between;
 }
 
 a {
     color: var(--accent);
     text-decoration: none;
 }
 
 a:hover {
     text-decoration: underline;
 }
 
 .msg {
     display: none;
     margin-top: 1rem;
     padding: .6rem .75rem;
     border-radius: 8px;
     font-size: .85rem;
 }
 
 .msg.info {
     background: #f0f0f0;
     color: #93c5fd;
 }
 
 .msg.success {
     background: #f0f0f0;
     color: #86efac;
 }
 
 .msg.error {
     background: #f0f0f0;
     color: red;
 }
 
 .divider {
     text-align: center;
     color: var(--muted);
     margin: 1rem 0;
     font-size: .8rem;
 }
 
 .google {
     display: block;
     text-align: center;
     background: #fff;
     color: #1f2937;
     padding: .6rem;
     border-radius: 15px;
     font-weight: 600;
 }
 
 pre {
     background: #0b1220;
     padding: 1rem;
     border-radius: 15px;
     overflow: auto;
     font-size: .8rem;
 }