/* Template Name: 86 Code */
/* Basic reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color:#0f172a;
    background:#0d3630;
}

/* Layout */
.page{
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.card{
    width:100%;
    max-width:640px;
    background:#0d3630;
    border:1px solid #b6e559;
    border-radius:12px;
    padding:32px 28px;
    text-align:center;
}

.logo{display:flex;flex-direction:column;align-items:center;gap:10px;margin-bottom:18px}
.logo img{width:100%;max-width:200px;height:auto;display:block}
.logo h1{margin:0;font-size:28px;line-height:1.2;letter-spacing:.2px;font-weight:700;color:#0f172a}
.logo.text-logo h1{display:block}

.address{margin:14px 0 22px 0;color:#999}
.address p{margin:2px 0;font-size:15px;font-style: normal;}

.copyright{color:#999;font-size:13px}

/* Responsive tweaks */
@media (max-width: 480px){
    .card{padding:24px 18px}
    .logo h1{font-size:22px}
    .address p{font-size:14px}
}