@media only screen and (max-width:999px) {
    body {
        background: lightgray;
        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: 120px;
        height: 120px;
      }
        form {
          display: flex;
          flex-direction: column;
          align-content: center;
      margin: 25px;
      margin-top: -20px;
        }
        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;
        }
}