*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}



.rs-container{
  width:100%;
  max-width:650px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  padding:40px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
  margin:40px auto
}

.rs-title{
  text-align:center;
  font-size:28px;
  font-weight:600;
  margin-bottom:30px;
}

.rs-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.rs-field{
  display:flex;
  flex-direction:column;
}

.rs-label{
  margin-bottom:8px;
  font-size:14px;
  opacity:0.8;
}

.rs-input, .rs-select{
  padding:12px 14px;
  border-radius:10px;
  border:none;
  font-size:15px;
  background:#1f2937;
  color:white;
  outline:none;
}

.rs-input::placeholder{
  color:#6b7280;
}

.rs-result-box{
  margin-top:30px;
  padding:20px;
  background:#0f172a;
  border-radius:12px;
  color:#fff
}

.rs-result-item{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
  font-size:15px;
}

.rs-footer-note{
  margin-top:15px;
  font-size:12px;
  opacity:0.6;
  text-align:center;
}

@media(max-width:600px){
  .rs-grid{
    grid-template-columns:1fr;
  }
  
.rs-container{
  width:95%;
  max-width:95%;
  margin:20px auto
}

  
  
}