/* Variables y reset ligero */
:root{
  --bg:#f7f7f9;
  --card:#ffffff;
  --accent:#fd0021;
  --muted:#6b6b6b;
  --radius:10px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#111;
  -webkit-font-smoothing:antialiased;
}
.container{
    max-width:800px;
    margin:0 auto;
    padding:3rem;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    .logo{
        max-width: 200px;
        margin: 0 auto 30px;
        img{
            width: 100%;
            height: auto;
        }
    }
    h1{
        color: var(--muted);
        text-align: center;
        font-size: 20px;
        margin: 0 0 20px;
    }
    p{
        line-height: 1.5;
        text-align: center;
        a{
            color: var(--accent);
            text-decoration: none;
            &:hover{
                text-decoration: underline;
            }
        }
    }
    p.contact{
        font-weight: bold;
        margin-top: 30px;
    }
}

/* media queries */
@media (max-width: 800px){
    .container{
        padding: 2rem;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px;
    }
}
