body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:#f5f4f2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:100vh;
}

.logo{margin-bottom:20px;}

.card{
  width:380px;
  background:white;
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.title{font-weight:500;margin-bottom:10px;}

.line{
  height:1px;
  background:#ddd;
  margin:15px 0;
}

.label-row{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:6px;
}

.link{color:#2a7dbf;cursor:pointer;}

.input{
  border:none;
  border-bottom:2px solid #ddd;
  padding:10px 5px;
  width:100%;
  outline:none;
}

.btn{
  padding:10px 20px;
  background:#ccc;
  color:white;
  border:none;
  border-radius:10px;
}

.btn.active{
  background:#2e2e32;
  cursor:pointer;
}

.actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
}

.warning{
  background:#f5e6b3;
  padding:15px;
  border-radius:16px;
  margin-top:20px;
  font-size:13px;
}

.contact{
  margin-top:25px;
  text-align:center;
  font-size:14px;
}

.modal-bg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
}

.modal{
  background:white;
  padding:30px;
  border-radius:20px;
  width:600px;
  max-width:90%;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
  position:relative;
}

.close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:20px;
  cursor:pointer;
}

.modal-content{
  display:flex;
  align-items:center;
  gap:20px;
}

.info-box{
  background:#d9e7f7;
  padding:12px;
  border-radius:20px;
  margin-top:15px;
  font-size:13px;
}

.loader{
  width:20px;
  height:20px;
  border:3px solid #fff;
  border-top:3px solid transparent;
  border-radius:50%;
  display:inline-block;
  animation:spin 0.8s linear infinite;
  vertical-align:middle;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}