/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
/***************************************************************
** TODO: This stylesheet doesn't use our current guidelines.  **
** It has to be refactored.                                   **
***************************************************************/
/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.u-font-weight-bold {
  font-weight: bold; }

.u-font-weight-500 {
  font-weight: 500; }

.u-font-size-bigger {
  font-size: 20px; }

.u-font-size-medium {
  font-size: 15px; }

.u-width-1rem {
  width: 1rem; }

.u-width-full {
  width: 100%; }

.u-height-full {
  height: 100%; }

.u-position-relative {
  position: relative; }

.u-display-flex {
  display: flex; }

.u-display-flex-column {
  display: flex;
  flex-direction: column; }

.u-display-inline-block {
  display: inline-block; }

.u-full-w {
  width: 100%; }

.u-full-h {
  height: 100%; }

.u-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }

.u-clickable {
  cursor: pointer; }

.u-margin-bottom-normal {
  margin-bottom: 10px; }

.u-margin-bottom-big {
  margin-bottom: 20px; }

.u-margin-bottom-large {
  margin-bottom: 30px; }

.u-margin-left-big {
  margin-left: 20px; }

.u-text-underline {
  text-decoration: underline; }

/**
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/
 */
.landing-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100vh;
  justify-content: center; }
  .landing-container.theme-light,
  .theme-light .landing-container {
    background-color: #00bb7e; }
  .landing-container.theme-dark,
  .theme-dark .landing-container {
    background-color: #333333; }

.landing-container-header {
  text-align: center;
  margin-bottom: 40px;
  width: 250px;
  height: 100px;
  background: url("../images/arregui-logo-innovation.svg");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat; }

.forgot-password-redirect {
  cursor: pointer; }
  .forgot-password-redirect.theme-light,
  .theme-light .forgot-password-redirect {
    color: #fff; }
  .forgot-password-redirect.theme-dark,
  .theme-dark .forgot-password-redirect {
    color: yellow; }

.forgot-password-redirect:hover {
  text-decoration: underline; }

.login-btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end; }

.login-btn {
  margin-top: 30px;
  width: fit-content; }
  .login-btn.theme-light,
  .theme-light .login-btn {
    background-color: #fff; }
  .login-btn.theme-dark,
  .theme-dark .login-btn {
    background-color: tomato; }
  .login-btn.theme-light,
  .theme-light .login-btn {
    color: #003e23; }
  .login-btn.theme-dark,
  .theme-dark .login-btn {
    color: black; }
