*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

body{
  background:#f3f6fc;
  color:#222;
}

/* BRAND */
.brand{
  background:linear-gradient(135deg,#0b2cff,#00a86b);
  padding:90px 20px;
  text-align:center;
  color:#fff;
}

.logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}

.logo-wrap img{
  width:90px;
}

.logo-wrap h1{
  font-size:42px;
}

.logo-wrap span{
  color:#ffd600;
}

.brand p{
  margin-top:10px;
  opacity:.9;
}

/* BUTTONS */
.btn-wrap{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:18px;
}

.website-btn{
  background:#fff;
  color:#0b2cff;
  padding:14px 38px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

.login-btn{
  background:#ffd600;
  padding:14px 38px;
  border-radius:30px;
  border:none;
  font-weight:600;
  cursor:pointer;
}

/* INFO */
.info{
  background:#fff;
  padding:70px 60px;
  text-align:center;
}

.cards{
  display:flex;
  gap:25px;
  margin-top:35px;
}

.card{
  background:#f3f6fc;
  padding:32px;
  border-radius:16px;
  width:33%;
}

/* FOOTER */
footer{
  background:#0c0c0c;
  color:#aaa;
  text-align:center;
  padding:22px;
  font-size:14px;
}

/* MODAL */
.modal{
  display:none;           /* ✅ FIXED */
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  align-items:center;
  justify-content:center;
}

.login-box{
  width:360px;
  background:#fff;
  padding:30px;
  border-radius:10px;
  text-align:center;
  position:relative;
}

.login-logo{
  width:150px;
  margin-bottom:20px;
}

.tab-wrap{
  display:flex;
  margin-bottom:18px;
}

.tab{
  width:50%;
  padding:10px;
  border:1px solid #c9b27c;
  background:#fff;
  cursor:pointer;
}

.tab.active{
  background:#c9b27c;
  color:#fff;
}

.login-box input{
  width:100%;
  padding:12px;
  margin-bottom:14px;
  border:1px solid #ddd;
}

.signin-btn{
  width:100%;
  padding:12px;
  background:#4f6fdc;
  color:#fff;
  border:none;
  cursor:pointer;
}

.forgot{
  display:block;
  margin-top:12px;
  font-size:14px;
  color:#2a62d5;
  text-decoration:none;
}

.close{
  position:absolute;
  right:14px;
  top:10px;
  font-size:22px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .cards{
    flex-direction:column;
  }
  .card{
    width:100%;
  }
}
