

.login-content
{
    display:grid;
    height: min-content;
    background:white;
    border-radius: 20px;
    grid-template-columns: repeat(2,minmax(100px, 450px));
    grid-auto-rows: auto;
    box-sizing: border-box;
    box-shadow: var(--dropshadow);
}
.loginImgContainer
{
    /* background:rgb(169, 169, 255); */
    margin:50px 0;
    padding-right: 10px;
    height: auto;
    display: flex;
    justify-self: center; 
    align-items: center;
    border-right: thin solid rgb(235, 235, 235);
    box-sizing: border-box;
}
.loginImgContainer img
{
    width:100%;
}
.welcome-text
{
    height: min-content;
    padding-top:20px;
    width:100%;
    margin-bottom: 25px;
    color: var(--primaryThree);
}

.welcome-text h2
{
    padding:20px;
    width:100%;
}
.welcome-text h4
{
    font-weight: lighter;
}
#login-options-container
{
    border: 1px solid lightgray;
    padding: 25px;
    border-radius: 4px;
}
#login-options-container h4
{
    width: 100%;
    text-align: center;
}
#login-options-container .login-option:last-child
{
    margin-top: 25px;;
} 

.form-container{
    /* background:pink; */
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-content: center;
    text-align: center;
    margin:25px 0;
}
.form-container p 
{
    margin-top: 20px;
}
.forgotpassword
{
    float:left;
    width:100%;
}

.pword
{
    
}

.btn-login
{
    color:white;
    border-radius: 10px;
    border:none;
    outline: none;
    padding: 8px 25px;
    margin-top:20px;
    transition: var(--btnTransitionSpeed);
    cursor: pointer;
}
.btn:hover{
    transform: var(--btnScale);
}

.log-in
{
    background-color: var(--primaryThree);
    width:125px;
    align-self: center;
}


.forgotpassword
{
   color:rgb(192, 192, 192);
   text-decoration: none;
   text-align: right; 
   font-size: 0.8em;
}
.login-user-info
{
    display:flex;
    width:auto;
    margin: 0 50px;
    flex-direction: column;
}
.or
{
    margin-top: 50px;
    width: 50%;
    align-self: center;
}

.or hr {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: thin solid rgb(192, 192, 192);
    color: rgb(192, 192, 192);
    text-align: center;
}
.or hr:after {
    content: "or";
    display: inline-block;
    position: relative;
    top: -1.2em;
    font-size: 0.8em;
    padding: 0 0.25em;
    background: white;
}

.google , .facebook
{
   background-color: #E57368;
   width:220px;
}

.facebook {background-color: #76A7FA;}

.fa
{
    border-right: thin solid rgb(255, 255, 255);
    position:relative;
    padding:0 5px;
    float:left;
    right: 20px;
    margin-left: 5px;
    font-size: 1.6em;
}
.cancel
{
    background-color: rgb(92, 92, 92);
    width:200px;
    align-self: center;
    margin-bottom: 10px;
}

.sign-up-text
{
    color: var(--primaryTwo);
    font-size: 0.9em;
}
.sign-up-text span
{
    text-decoration: none;
    color: var(--primaryTwo);
    font-weight: bold;
    transition: var(--btnTransitionSpeed);
    cursor: pointer;
}
.sign-up-text span:hover
{
    font-size: 1.5em;
}

/* The Close Button (x) */
.close {
    position: relative;
    top: -50%;
    left: 40%;
    color: rgb(192, 192, 192);
    font-size: 35px;
    font-weight: bold;
  }
  
  .cancel:hover,
  .cancel:focus {
    background-color: rgb(29, 29, 29);
    cursor: pointer;
  }


  @media screen and (max-width: 700px) {
      .loginImgContainer {
          display: none;
      }

      .login-content {
          grid-template-columns: 100%;
      }
  }
  @media screen and (max-width: 450px) {

      .login-content {
          grid-template-columns: 100%;
          width:100%;
          height: 100%;
          border-radius: 0;
          box-shadow: none;
          margin-bottom: 50px;
      }
      .form-container
      {
          justify-content: flex-start;
      }
  }
  @media screen and (max-height: 700px) 
  {
      .welcome-text 
      {
          padding-top: 20px;
          margin-bottom: 20px;
      }

      .or 
      {
          margin-top: 20px;
      }

      .log-in , .google 
      {
          margin-top: 0;
      }

      .form-container 
      {
          margin: 20px 0;
      }
  }


 