/* Change background color and font family */
:root {
    --orbis-blue: #005fa3;
    --orbis-orange:#e77817;
    --orbis-greybg:#edeef0;
}
body {
    background: var(--orbis-blue);
    font-family: 'PT Sans', sans-serif !important;
  }
  .login {
    display: flex;
  }
  #login {
    background-color: var(--orbis-greybg);
    padding: 2em;
  }
  /* Change Width and Height of Logo Image + Add Custom Image File */
  /* .login h1 a {
    background-image: url(logo.png);
    width: 213px;
    height: 97px;
    background-size: 213px 97px;
  } */
   
  /* Add a few changes to the color and style of form itself */
  .login label {
    color: #454545;
    display: block;
    margin-bottom: 1em;
    font-weight: bold;
  }
   
  .login form .input {
    font-weight: normal;

  }
  .login form {
    border: 2px solid var(--orbis-blue);
  }
  .login #backtoblog a:hover, .login #nav a:hover {
    color: var(--orbis-orange) !important;
    transition: 0.3s;
  }
   
  .login #backtoblog a, .login #nav a {
    color: var(--orbis-blue);
  }
   
  .wp-core-ui .button-primary {
    background: var(--orbis-blue);
  }
  .button-primary:hover {
    background: var(--orbis-orange) !important;
    border-color: var(--orbis-orange) !important;
    transition: 0.3s;

  }
  /* #wp-submit:hover {
    background: var(--orbis-orange);
  } */

  .language-switcher {
    display: none;
  }