:root{
  --bg:#0f1724;
  --card:#0b1220;
  --muted:#9aa5b1;
  --accent:#6ee7b7;
  --white:#f8fafc;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background:linear-gradient(180deg,var(--bg),#071021);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.wrap{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
}
.brand{
  position:fixed;
  top:20px;
  left:24px;
  font-weight:700;
  letter-spacing:0.4px;
}
.circle-image {
  width: 140px; /* Adjust size */
  height: 140px;
  border-radius: 50%; /* Makes it circular */
  object-fit: cover; /* Keeps image ratio, crops to fit */
  border: 4px solid #ddd; /* Optional border */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Optional shadow */
  margin-bottom: 30px;
}
.card{
  width:100%;
  max-width:720px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.04);
  padding:36px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 30px rgba(2,6,23,0.6);
}

.card h1{margin:0 0 8px;font-size:clamp(1.5rem,2.4vw,2.4rem)}
.lead{color:var(--muted);margin:0 0 20px}
.signup{display:flex;gap:12px;justify-content:center;align-items:center;flex-wrap:wrap}
.signup input{
  padding:12px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.06);
  background:transparent;color:var(--white);
  min-width:260px;flex:1;max-width:420px;outline:none
}
.signup button{
  background:var(--accent);
  color:#012019;
  border:none;padding:12px 18px;border-radius:8px;font-weight:600;cursor:pointer
}
.signup button:hover{filter:brightness(.98)}
.meta{list-style:none;padding:18px 0 0;margin:0;display:flex;gap:12px;justify-content:center;align-items:center;color:var(--muted)}
.meta a{color:var(--white);opacity:.85;text-decoration:none}
.foot{margin-top:18px;opacity:.6;font-size:.9rem}
.visually-hidden{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}



.contact-info {

color: #0f1724;;

margin:20px;
margin-top:30px;    

padding: 20px;
background: #ffffff;
background-image: url(images/tyres.png);
background-repeat: no-repeat;
background-size: 20%;
}
.contact-info a {
  color: #0f1724;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
a.social{
   text-align: center;
   display: block;
}
#social_icon{
    width: 35px;
    margin: 10px 0px;
   
}

@media (max-width:520px){
  .card{padding:28px;border-radius:10px}
  .brand{left:12px}
  .signup input{min-width:180px}
  .contact-info{background-image: none;}
}