 body {
   font-family: 'Aria', sans-serif;
    background-image: linear-gradient(rgba(220, 220, 220, 1), rgba(220, 220, 220, 1)) !important;
   margin: 0px;
 }
.container {
  max-width: 900px;
  margin: auto;
  padding: 0 15px;
}

.converter-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.converter-card h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.converter-card p {
  margin-bottom: 12px;
  color: #555;
}

form {
  margin-top: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.input-half {
  flex: 1 1 calc(50% - 8px);
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.input-full {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  margin-bottom: 20px;
}

.newbutton {
  padding: 12px 24px;
  background: #444A9E;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.newbutton:hover {
  background: #0056b3;
}

/* Responsive fix */
@media (max-width: 600px) {
  .input-half {
    flex: 1 1 100%;
  }

  .converter-card {
    padding: 20px;
  }
}

.top-to-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #444A9E;
    color: white;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    display: none;
    z-index: 999;
    transition: background-color 0.3s ease;
  }

  .top-to-home-btn:hover {
    background-color: black;
  }
  @keyframes blink {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
  }
   .back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none; /* Initially hidden */
  padding: 10px 15px;
  background-color: #444A9E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.back-to-top-btn:hover {
  background-color: #000;
}