@media only screen and (min-width:1000px) {
    #main {
        margin-left: 400px;
        margin-right: 400px;
        border: 2px solid gold;
        border-radius: 20px;
        padding: 10px;
        background-color: #333;
      }
                /* width */
::-webkit-scrollbar {
    width: 10px;
    background: gold;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0px red; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: deeppink; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: deeppink; 
  }

    body {
        background: linear-gradient(90deg,blue,darkblue);
        font-family: arial;
      }
      label {
        color: #333;
      }
      a {
        display: flex;
        justify-content: center;
        font-size: 12px;
        color: #333;
        text-decoration: none;
      }
        .container {
          background: white;
          box-shadow: 0 0 4px gray;
          padding: 5px 0px 35px 0px;
          margin: 25px;
          border-radius: 10px;
        }
        .logo {
          display: flex;
          justify-content: center;
        }
      .logo img {
        width: 60px;
      }
        form {
          display: flex;
          flex-direction: column;
          align-content: center;
      margin: 25px;
        }
        input {
          margin-top: 20px;
          padding: 15px 30px 15px 30px;
          outline: none;
          border: 2px solid goldenrod;
          font-weight: bold;
        }
        .input{
          box-shadow: 0 0 1px gray;
          border-radius:5px;
        }
        .submit {
          background: rgb(8, 22, 146);
          color:white;
          border: none;
          font-weight: 500;
          margin-top: 60px;
          padding: 15px 30px 15px 30px;
        border-radius: 5px;
        }
}