body{
    background-color: #212121;
    color: azure;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  
  
  .tab {
    height: 670px;
    width: 500px;
    background: linear-gradient(to bottom right, #00d2ff, #3a7bd5, #4a00e0);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 35%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
  }
  
 
  #search{
     width: 350px;
     height: 25px;
     margin-bottom: 550px;
     margin-right: 80px;

  }
  #enter{
    margin-right: 50px;
  }
  .tab {
    font-family: 'Poppins', sans-serif;
  }
  .search-form {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px; /* controls space between input and button */
  }
  
  #search {
    width: 300px;
    height: 35px;
    border-radius: 20px;
    border: none;
    padding: 0 15px;
    font-size: 16px;
    outline: none;
    margin: 0;
  }
  
  .search-btn {
    background-color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @media (max-width: 600px) {
    .tab {
      padding: 15px;
    }
  
    #search {
      width: 100%;
      font-size: 1rem;
    }
  
    .search-form {
      flex-direction: column;
      gap: 10px;
    }
  
    .search-btn {
      width: 100%;
      border-radius: 10px;
    }
  
    #temperature,
    #humidity,
    #wind,
    #city {
      font-size: 1.2rem;
      text-align: center;
    }
  }
  