 .input-container {
      position: relative;
      display: inline-block;
    }

    .input-container input {
      padding-right: 30px;
    }

    .input-container .currency-icon {
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
    }



/* Container */
.heizkostenerstattung-container {
  max-width: 500px;
 width: 100%;
  margin: 0 auto;
  padding: 50px;
  font-family: Arial, sans-serif;
}

@media only screen and (min-width: 425px) {
  .hk-form {
  width: 400px;
  min-width: 400px;
}
}

@media only screen and (max-width: 414px) {
  .hk-form {
  width: 100%;
  min-width: 100%;
}
}







/* Form */
.heizkostenerstattung-form {
  display: flex;
  width: 100%;
 
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f5;
  padding: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 5px;


}

/* Input Fields */
.heizkostenerstattung-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.heizkostenerstattung-form input[type="text"],
.heizkostenerstattung-form input[type="number"],
.heizkostenerstattung-form select {

  display: flex;
  width: 100%;
  padding: 10px;

  margin-bottom: 20px;
  font-weight: bold;
  
  margin-bottom: 10px;
  border-radius: 5px;
  
 border:1px solid #cccccc

  border-radius: 5px;
  
}

/* Button */
.heizkostenerstattung-form button {
  background-color: #005d66;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 10px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;

  transition: all 0.2s ease-in-out;
}

.heizkostenerstattung-form button:hover {
  background-color: #10808a;
}

/* Result */
.heizkostenerstattung-result {
  margin-top: 20px;
  margin-bottom: 20px;
 
  
  text-align: center;
}
