/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Container Styling */
  .container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  
  /* Heading Styling */
  h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Input Box */
  .inputBox {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .passBox {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: #fff;
    color: #333;
    padding-right: 40px;
  }
  
  #copyIcon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    cursor: pointer;
  }
  
  /* Slider Styling */
  #inputSlider {
    width: 100%;
    margin: 1rem 0 0.3rem 0;
  }
  
  /* Row Styling */
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
  }
  
  .row label {
    flex: 1;
    text-align: left;
  }
  
  .row input[type="checkbox"] {
    transform: scale(1.2);
  }
  
  /* Password Length Value */
  #sliderValue {
    font-weight: bolder;
    color: #fa4343;
    font-size: large;
  }
  
  /* Button Styling */
  button {
    background: #2575fc;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  
  button:hover {
    background: #6a11cb;
    transform: scale(1.05);
  }
  footer {
    position: absolute;
    top: 35rem;
    left: 30px;
    font-size: 0.8rem;
    opacity: 0.8;
  }
    