﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

html,
body,
#app {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Open Sans" !important;
  font-size: 13.3333px;
  position: relative;
  background-image: url('../images/fondoSSO.png');
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

input,
select,
textarea,
button {
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 500px) {
  /*#app,*/
  input,
  select,
  textarea,
  button {
    font-size: 13.3333px;
  }
}

a {
  text-decoration: none;
  color: var(--accent);
}

:root {
  --accent: #563bd4;
  --background: #ffffff;
  --alert: #dc3545;
  --warning: #ffc107;
  --success: #28a745;
  --info: #17a2b8;
}

.poweredBy {
  position: fixed;
  bottom: 2vmin;
  right: 2vmin;
  display: block;
}

.poweredBy > a > img {
  height: 64px;
}

#app {
  display: grid;
  grid-template-rows: auto 1fr;
}

.blankPage {
  text-align: center;
}

.landing {
  margin: 1em auto;
}

.landing div {
  font-weight: normal;
  font-size: 1.5em;
  margin: 0;
  padding: 0 0.5em;
}

.landing > .social {
  margin: 1em;
}

.landing > .social > div > * {
  vertical-align: middle;
  margin-left: 1em;
  display: inline-block;
}

.landing > .social > div > a > img {
  display: inline-block;
  height: 1.5em;
}

.landing > .fields {
  display: grid;
  margin: 1em;
  gap: 0.75em;
}

.landing > .fields > p {
  margin: 0;
  text-align: center;
  color: #3d9bd6;
}

.landing > .fields > a {
  border: 1px solid #ccc;
  padding: 0.25em;
  color: #444;
  display: flex;
  align-items: center;
}

.landing > .fields > a > img {
  height: 1.5em;
  width: 1.5em;
  vertical-align: middle;
}

.landing > .fields > a > span {
  flex-grow: 1;
  text-align: center;
  color: #999;
  text-transform: uppercase;
  font-size: 0.6em;
  margin: 0 1em;
}

.landing > .fields > input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.5em;
  outline: none;
}

.landing > .fields > button {
  background-color: #e7c813;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  width: 180px;
  text-align: center;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1rem;
}

.landing > .fields > p.errorBox {
  color: var(--alert);
}

.loading,
.loading *,
.landing > .fields.loading > button {
  cursor: wait;
}

@media screen and (max-width: 600px) {
  #app {
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 13.3333px;
  }

  .landing {
    max-width: 100%;
  }
}
