/**
* Login page stylesheet.
*
* LICENSE: This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
*
* @package OpenEMR
* @author  Robert Down <robertdown@live.com>
* @link    http://www.open-emr.org
*/

body.login {
  background: var(--v-secondary-darken3);
  overflow: auto;
}

.login-failure {
  background-color: var(--v-error-darken4);
  color: var(--v-secondary-lighten-3);
  font-weight: bold;
}

.login #login_box {
  padding: 25px;
  background: var(--v-secondary-base);
  box-shadow: 0px 0px 17px 0.8px grey;
  border-radius: 13px;
}

.logo-left {
  /* float: left; */
}

.login-title-label {
  margin-left: 30px;
  font-weight: bold;
  font-size: 24px;
  background-color: var(--v-secondary-darken2);
  color: var(--v-secondary-lighten3);
  margin-top: 20px;
  margin-bottom: 10px;
}

.login-logo-wrapper {
  max-width: 400px;
}

.tinylogopng {
  width: 86px;
  height: 43px;
  margin-bottom: 10px;
}

#provider_title {
  font-size: x-large;
}

@media (min-width:992px) {
  body.login {
    overflow: hidden;
  }

  #update_announcement {
    overflow: auto;
  }

  .row {
    height: 680px;
  }
}
