    body {
      font-family: Arial, sans-serif;
      background: linear-gradient(to right, #74ebd5, #acb6e5);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

    .weather-box {
    background-image: linear-gradient( 89.2deg,  rgba(255,255,255,1) -1.3%, rgba(253,109,38,1) 281.6% );
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      width: 300px;
    }

    input {
      padding: 10px;
      width: 80%;
      border-radius: 8px;
      border: 1px solid #ccc;
      margin-bottom: 15px;
    }

    button {
      padding: 10px 20px;
      background: #0077b6;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    button:hover {
      background: #023e8a;
    }

    .weather-result {
      margin-top: 20px;
    }

    .weather-result img {
      width: 80px;
      animation: fadeIn 1s ease-in-out;
      background-image: radial-gradient( circle 346px at 0.3% 100%,  rgba(62,76,167,1) 0%, rgba(255,99,145,1) 100.7% );
      color: white;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }

    .error {
      color: red;
      margin-top: 10px;
    }
