@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Roboto;
  background:linear-gradient(180deg,#E0F2FE 0%, #F6FBFF 50%, #FFFFFF 100%);
  display:flex;
  justify-content:center;
}

/* Mobile App Frame */
.app-container{
  max-width:430px;
  width:100%;
  min-height:100vh;
  background:#F9FCFF;
  box-shadow:0 0 80px rgba(14,116,144,0.15);
}

/* HERO */
.hero{
  padding:90px 25px 140px;
  text-align:center;
  background:
    radial-gradient(circle at top,#BAE6FD,#E0F2FE,#F9FCFF);
}

.hero h1{
  font-size:30px;
  line-height:1.3;
  font-weight:800;
  color:#0F172A;
  margin-bottom:12px;
}

.hero p{
  color:#475569;
  font-size:14px;
}

/* Floating Card */
.form-box{
  background:#fff;
  margin:-110px 30px 30px;
  padding:28px;
   margin-right: 10px;
  border-radius:22px;
  box-shadow:0 30px 80px rgba(15,23,42,0.12);
  position:relative;
}

.form-box h3{
  text-align:center;
  font-weight:700;
  color:#0F172A;
  margin-bottom:20px;
}

/* Inputs */
input{
  width:100%;
  padding:15px;
  border-radius:14px;
  border:1px solid #CBD5E1;
  margin-bottom:14px;
  font-size:15px;
  background:#F8FAFC;
}

input:focus{
  outline:none;
  border-color:#0EA5E9;
  background:#fff;
}

/* Button */
button{
  width:100%;
  padding:15px;
  border-radius:999px;
  border:none;
  background:linear-gradient(90deg,#14B8A6,#0EA5E9);
  color:white;
  font-size:16px;
  font-weight:700;
  box-shadow:0 12px 30px rgba(14,165,233,.45);
  cursor:pointer;
}

/* Trust row */
.trust{
  display:flex;
  justify-content:space-between;
  margin-top:20px;
  font-size:12px;
  color:#64748B;
}

/* Footer space */
.footer-space{
  height:100px;
}
