body{
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Open Sans, Ubuntu, Fira Sans, Helvetica Neue, sans-serif;
  
  background-color: Gray;
  background-image: url('new_portal_background.jpg');
  background-repeat: no-repeat;
  background-position: center;

      
  margin: 0;
  min-height: 100vh;
  display: flex;  
  flex-direction: column;
}

h1{
    color: Gold;
    font-family: 'Georgia';
    font-size: 250%;
    
     text-shadow:
    0 0 7px #B59410,
    0 0 10px #B59410,
    0 0 21px #B59410,
    0 0 42px #B59410;
}


            
 .btn-grad {
    background-image: linear-gradient(to right, #304352 0%, #d7d2cc  51%, #304352  100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: Gold;  
    font-family: 'Georgia';
    font-size: 130%;
    font-weight: bold;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
         
input[type="text"]
{
    font-size: 130%;
    color: Gold;  
    font-family: 'Georgia';
}
input[type="password"]
{
    font-size: 130%;
    color: Gold;  
    font-family: 'Georgia';
}

.login_box_pc{
    width: 300px;
    margin: auto;

    text-align: center;
    /* border: silver dashed 5px;*/

    padding: 50px;
    padding-top: 30px;

    z-index:2
}

button{
  width: 100%;
  padding: 15px;

  cursor: pointer;
}

.login_img{
  margin: auto;
  padding-right: 30%;
  display: block;
  float: center;
  width: 20%;
  height: auto;
}

.login_warning{
  margin: unset;
  text-align: left;
  color: red;
  background-color: wheat;
}

.orange{
  color: orangered;
}

@media(max-width:991px)
{
    .login_box_pc{
        width: 70%;
        margin: 0;
    }
}
