body{
    font-family: 'Poppins', sans-serif;
    background-image: url("../img/76YS.gif");
    /* background-color: white; */
    background-position: center;
}






input{
    outline: none;
    color: red;
    font-family: 'Poppins', sans-serif;

}





body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }
  .login-container {
    box-shadow: 2px 8px 8px rgb(255 0 245 / 50%);
    width: 300px;
    background-color: #004c83;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
  }
  .logo {
    max-width: 150px;
    margin-bottom: 20px;
  }
  .login-container input[type="text"],
  .login-container input[type="password"] {
    box-shadow: 0 4px 8px rgb(255 0 245 / 50%);
    width: calc(100% - 40px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
  }
  .login-container input[type="submit"] {
    /* width: 100%; */
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  .slider {
    color: white;
    background-color: black;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
  }
  .slider-text {
    color: white;
    display: inline-block;
    animation: slide 10s infinite linear;
  }

  @keyframes slide {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }