/* v2025.11.27 */
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px var(--bkgrd-clr) inset !important;
  }

  .overlay {
    position: fixed;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0;
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-clr);
    transition: background-color 2s ease-out, opacity 2s ease-out;
  }

  .overlay.show {
    background-color: rgba(255, 255, 255, 1);
    opacity: 1;
  }

  .select {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.6;
    user-select: none;
    z-index: 1;
  }

  .select input[type="radio"] {
    border: none;
    outline: none;
    height: 0px;
    width: 0px;
  }

  .select label {
    top: 0;
    right: 0;
    position: absolute;
    text-align: center;
    padding: 8px;
    width: 50px;
    display: block;
    cursor: pointer;
  }

  input:checked + label {
    background-color: #404040;
    color: #f7f7f7;
    border: 1px solid var(--primary-clr);
  }

  .box {
    position: absolute;
    width: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40px;
    padding: 60px 15px 35px 15px;
    box-shadow: 13px 13px 20px var(--primary-clr), -13px -13px 20px #fff; /*#cbced1*/
  }

  .box h1 {
    float: left;
    font-size: 40px;
    /* border-bottom: 6px solid #4caf50; */
    /* margin-top: 50px; */
    /* padding: 0 0 8px 0; */
    margin-top: 0px;
    margin-bottom: 16px;
    color: var(--primary-clr);
  }

  .inputBox {
    width: 100%;
    overflow: hidden;
    font-size: 20px;
    padding: 10px 2px;
    margin: 10px 0;
    /*border-bottom: 2px solid #4caf50;*/
    border-radius: 10px;
    box-shadow: inset 3px 3px 5px var(--primary-clr),
      inset -3px -3px 5px #ffffff;
  }

  .inputBox i {
    width: 26px;
    float: left;
    text-align: center;
  }

  .inputBox input {
    border: none;
    outline: none;
    /*background: transparent;*/
    font-size: 18px;
    width: 80%;
    float: left;
    margin: 0 10px;
  }
  /*.inputbox input:-internal-autofill-selected {
                    -webkit-appearance: menulist-button;
                    background-color: rgb(232, 240, 254) !important;
                    background-image: none !important;
                    color: var(--primary-clr) !important;
                }*/

  input[type="text"]:focus,
  input[type="password"]:focus {
    border-left: 5px solid #e74c3c;
    transition: all 0.4s ease;
    color: var(--primary-clr);
    /* Remove the padding-left that was causing the shift */
  }

  input[type="submit"]:hover {
    background: var(--accent);
    color: #fff;
    outline: 0;
    transition: background-color 2s ease-out;
  }

  .btn {
    width: 100%;
    background: none;
    border: 2px solid #4caf50;
    color: var(--primary-clr);
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
    margin: 12px 0;
    border-radius: 5px;
  }

  a {
    font-size: 13px;
    font-family: tahoma;
    color: var(--primary-clr);
    font-weight: 700;
    text-decoration: none;
    opacity: 0.6;
  }

  a:hover {
    opacity: 1;
  }
}
