/* Container Styling */
.calculator-container {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #f58220; /* Indian Bank Orange */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Labels */
.calculator-container label {
  font-weight: 600;
  color: #002a5c; /* Navy Blue */
  display: block;
  margin-bottom: 6px;
}

/* Input Fields */
.calculator-container input[type=text] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* Input Focus */
.calculator-container input[type=text]:focus {
  border-color: #f58220;
  outline: none;
  box-shadow: 0 0 5px rgba(245, 130, 32, 0.3);
}

/* Form Group */
.form-group {
  margin-bottom: 18px;
}

/* Error Message */
.error {
  font-size: 12px;
  color: #d32f2f;
  margin-top: 4px;
}

/* Buttons Container */
.btn-div {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

/* Buttons */
.submit-btn {
  width: 48%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #f58220, #ff9a3c);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button Hover */
.submit-btn:hover {
  background: linear-gradient(135deg, #d96f10, #f58220);
  transform: translateY(-1px);
}

/* Reset Button Different Look */
.submit-btn:last-child {
  background: #002a5c;
}

/* Reset Hover */
.submit-btn:last-child:hover {
  background: #001a3a;
}

/* Result Section */
.result {
  margin-top: 20px;
  padding: 15px;
  background: #f9fafc;
  border-left: 5px solid #f58220;
  border-radius: 6px;
  color: #002a5c;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
  .btn-div {
    flex-direction: column;
    gap: 10px;
  }
  .submit-btn {
    width: 100%;
  }
}