@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

/* Variables CSS */
:root{
    /* Colores */
    --primary-dark-color: #EC7004;
    --primary-color: #EF8C36;
    --background-color: #FAFAFA;
    --aux-color: #BDBDBD;
    --secondary-dark-color: #000000;
    --secondary-color: #212121;
    --secondary-text-color: #757575;
    --icons-color: #FFFFFF;

    --font-style: "Poppins", sans-serif;
}

body {
      background-color: var(--background-color);
      font-family: var(--font-style);
      overflow: hidden;
}

.main {
      background-color: var(--icons-color);
      width: 450px;
      height: 500px;
      margin: auto;
      border-radius: 25px;
      box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
}

.main-reg {
    background-color: var(--icons-color);
    width: 450px;
    height: 620px;
    margin: auto;
    border-radius: 25px;
    box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
}

.main-reset {
  background-color: var(--icons-color);
  width: 450px;
  height: 380px;
  margin: auto;
  border-radius: 25px;
  box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
}

.title {
      padding-top: 40px;
      margin-bottom: 10px;
      color: var(--primary-dark-color);
      font-family: var(--font-style);
      font-weight: bold;
      font-size: 2.2rem;
}

@media (max-width: 490px) {
  .main,
  .main-reg,
  .main-reset{
      width: 100%;
  }
}



.input-field {
  max-width: 380px;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.3);
  margin: 10px 0;
  height: 55px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
  position: relative;
}

.input-field #hide-show{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}


.input-field i {
  text-align: center;
  line-height: 55px;
  color: var(--primary-color);
  transition: 0.5s;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary-text-color);
}

.input-field input::placeholder {
  color: var(--secondary-text-color);
  font-weight: 500;
}

.btn-form {
  width: 150px;
  background: none;
  border: 2px solid var(--primary-color);
  outline: none;
  height: 49px;
  border-radius: 49px;
  color: var(--secondary-dark-color);
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn-form:hover {
  background-color: var(--primary-color);
  color: var(--icons-color);
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0rem 2.5rem;
  transition: all 0.2s ease;
  overflow: hidden;
}


/*  Pie */
.pie{
  width: 100%;
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  transition: .5s;
}

/*  Logo */
.brand-logo{
  display: flex;
  justify-content: start;
  width: 480;
  height: 180;
  transition: 1.2s;
}

.auth-options{
  text-align: center;
}

.forgot-link{
  color: var(--aux-color);
  transition: all 0.2s ease;
  text-decoration: none;
}

.forgot-link:hover{
  text-decoration: underline;
  color: var(--primary-color);
}


/* ========== Carta Alerta =========== */

.alert-card{
  position: fixed;
  right: -5px;
  top: -20px;
  display: table;
}
/* success */
.wrapper-sucess {
  margin: 50px;
  transition: 1s;
}
.wrapper-sucess .success-card {
  width: 400px;
  height: 150px;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-left: 5px solid #49d761;
  border-radius: 3px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.wrapper-sucess .success-card .subject {
  margin-right: 5px;
}
.wrapper-sucess .success-card .subject p {
  color: var(--secondary-text-color);
}
.wrapper-sucess .success-card .icon {
  font-size: 28px;
  color: #49d761;
}
.wrapper-sucess .icon-times {
  font-size: 28px;
  color: #c3c2c7;
  cursor: pointer;
}

.wrapper-sucess .icon-times:hover {
  color: var(--secondary-color);
}

/* success */

/* warning */

.wrapper-warning {
  margin: 50px;
  transition: 1s;
}

.wrapper-warning .warning-card {
  width: 400px;
  height: 150px;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-left: 5px solid #fdc220;
  border-radius: 3px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.wrapper-warning .warning-card .subject {
  margin-right: 5px;
}
.wrapper-warning .warning-card .subject p {
  color: var(--secondary-text-color);
}
.wrapper-warning .warning-card .icon {
  font-size: 28px;
  color: #fdc220;
}
.wrapper-warning .icon-times {
  font-size: 28px;
  color: #c3c2c7;
  cursor: pointer;
}

.wrapper-warning .icon-times:hover {
  color: var(--secondary-color);
}


.client-text{
  display: block;
  font-size: 25px; 
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
}



.image-background{
  position: fixed;
  display: inline-block;
  z-index: -1;
  bottom: 8%;
  right: 2%;
  width: 50%;
}


.shapes{
  position: fixed;
  display: inline-block;
  z-index: -1;
}
.dec-gray{
  top: 0%;
  left: -7%;
  border-top: 500px solid var(--secondary-color);
  border-left: 0px solid transparent;
  border-right: 500px solid transparent;
  height: 0;
  width: 125px;
}
.dec-black{
  bottom: 0%;
  left: -7%;
  border-bottom: 500px solid var(--aux-color);
  border-left: 0px solid transparent;
  border-right: 500px solid transparent;
  height: 0;
  width: 125px;
}

.dec-orange{
  z-index: -2;
  top: 0;
  height: 100px;
  width: 100%;
  background-color: var(--primary-color);
}