/*
Theme Name: Therm Line Premium Coming Soon
*/

body{
  margin:0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
}

.container{
  text-align:center;
  max-width:700px;
  padding:60px 30px;
  background:rgba(255,255,255,0.05);
  border-radius:20px;
  backdrop-filter:blur(12px);
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  animation:fadeIn 1s ease;
}

.logo img{
  max-width:200px;
  margin-bottom:20px;
}

h1{
  font-size:40px;
  margin-bottom:10px;
}

p{
  opacity:0.8;
  margin-bottom:25px;
}

.contact{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:25px;
  flex-wrap:wrap;
}

.contact a{
  color:#38bdf8;
  text-decoration:none;
  font-weight:bold;
}

form input, form textarea{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border:none;
  border-radius:8px;
}

form button{
  background:#38bdf8;
  border:none;
  padding:12px 20px;
  border-radius:999px;
  cursor:pointer;
  font-weight:bold;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}
