
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Miniver&family=Poppins&display=swap');





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("Gemini_Generated_Image_higyynhigyynhigy.jpg") no-repeat center/cover;
}

.calculator-container {
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.95);
  text-align: center;
  box-shadow:
    0 0 15px rgba(94, 90, 101, 0.9),
    0 0 30px rgba(255, 255, 255, 0.6),
    0 0 50px rgba(122, 230, 7, 0.4);
}

h1 {
  color: BLUE;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

input, select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, select:focus {
  border-color: #0077ff;
  box-shadow: 0 0 8px rgba(0, 119, 255, 0.4);
}

button {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, #0077ff, #00bfff);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #005fcc, #0099cc);
}

#result {
  margin-top: 15px;
  font-weight: bold;
  color: #444;
}
