/* config.css */

:root {
    --baseColor: white;
  }
  
  /* helpers/align.css */
  
  .align {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
    place-items: center;
  }
  
  .grid {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 20rem;
  }

  .alert-info{
    text-align: center !important;
  }
  
  /* helpers/hidden.css */
  
  .hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  /* helpers/icon.css */
  
  :root {
    --iconFill: var(--baseColor);
  }
  
  .icons {
    display: none;
  }
  
  .icon {
    height: 1em;
    display: inline-block;
    fill: #606468;
    fill: var(--iconFill);
    width: 1em;
    vertical-align: middle;
  }
  
  /* layout/base.css */
  
  :root {
    --htmlFontSize: 100%;
  
   /* --bodyBackgroundColor: #71b73d;*/
    --bodyColor: var(--baseColor);
    --bodyFontFamily: "Open Sans";
    --bodyFontFamilyFallback: sans-serif;
    --bodyFontSize: 0.875rem;
    --bodyFontWeight: 400;
    --bodyLineHeight: 1.5;
  }
  
  * {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
  }
  
  html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 100%;
    font-size: var(--htmlFontSize);
  }
  
  body {
    /*background-color: #2c3338;
    background-color: var(--bodyBackgroundColor);*/
    background: rgb(130,217,63);
    background: -moz-linear-gradient(337deg, rgba(130,217,63,1) 0%, rgba(114,190,56,1) 35%, rgba(115,180,65,1) 100%);
    background: -webkit-linear-gradient(337deg, rgba(130,217,63,1) 0%, rgba(114,190,56,1) 35%, rgba(115,180,65,1) 100%);
    background: linear-gradient(337deg, rgba(130,217,63,1) 0%, rgba(114,190,56,1) 35%, rgba(115,180,65,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#82d93f",endColorstr="#73b441",GradientType=1);
    color: #606468;
    color: var(--bodyColor);
    font-family: "Open Sans", sans-serif;
    font-family: var(--bodyFontFamily), var(--bodyFontFamilyFallback);
    font-size: 0.875rem;
    font-size: var(--bodyFontSize);
    font-weight: 400;
    font-weight: var(--bodyFontWeight);
    line-height: 1.5;
    line-height: var(--bodyLineHeight);
    margin: 0;
    min-height: 100vh;
  }
  
  /* modules/anchor.css */
  
  :root {
    --anchorColor: #eee;
  }
  
  a {
    color: #eee;
    color: var(--anchorColor);
    outline: 0;
    text-decoration: none;
  }
  
  a:focus,
  a:hover {
    text-decoration: underline;
  }
  
  /* modules/form.css */
  
  :root {
    --formGap: 0.875rem;
  }
  
  input {
    background-image: none;
    border: 0;
    color: inherit;
    font: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  
  input[type="submit"] {
    cursor: pointer;
  }
  
  .form {
    display: grid;
    grid-gap: 0.875rem;
    gap: 0.875rem;
    grid-gap: var(--formGap);
    gap: var(--formGap);
  }
  
  .form input[type="password"],
  .form input[type="text"],
  .form input[type="submit"] {
    width: 100%;
  }
  
  .form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    align-content: center;
    border-bottom: white 1px solid;
  }
  
  .form__input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  
  /* modules/login.css */
  
  :root {
    --loginBorderRadus: 0.25rem;
    --loginColor: #eee;
  
    --loginInputBackgroundColor: #3b4148;
    --loginInputHoverBackgroundColor: #434a52;
  
    --loginLabelBackgroundColor: #3b4148;
  
    --loginSubmitBackgroundColor: white;
    --loginSubmitColor: #71b73d;
    /*--loginSubmitHoverBackgroundColor: #cacccf;*/
  }

  ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
  }
  
  .login {
    color: #eee;
    color: var(--loginColor);
  }
  
  .login label,
  .login input[type="text"],
  .login input[type="email"],
  .login input[type="password"],
  .login input[type="submit"] {
   /* border-radius: 0.25rem;*/
    border-radius: var(--loginBorderRadus);
    /*padding: 1rem;*/
    background-color: transparent;
    
  }
  
  .login label {
    /*background-color: #363b41;
    background-color: var(--loginLabelBackgroundColor);*/
    /*border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: x-large;*/
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    /* padding-left: 1.25rem; */
    padding-right: 2px;
    font-size: x-large;
    padding-bottom: 8px;
  }
  
  .login input[type="password"],
  .login input[type="text"] {
    /*background-color: #3b4148;
    background-color: var(--loginInputBackgroundColor);*/
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  
  .login input[type="password"]:focus,
  .login input[type="password"]:hover,
  .login input[type="text"]:focus,
  .login input[type="text"]:hover {
    /*background-color: #434a52;
    background-color: var(--loginInputHoverBackgroundColor);*/
  }

  @-webkit-keyframes autofill {
    0%,100% {
        color: #666;
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus,
  select:-webkit-autofill,
  select:-webkit-autofill:hover,
  select:-webkit-autofill:focus {
    border: none !important;
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px rgb(130 217 61 / 88%) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
  }
  
  .login input[type="submit"] {
    background-color: #ea4c88;
    background-color: var(--loginSubmitBackgroundColor);
    color: #eee;
    color: var(--loginSubmitColor);
    font-weight: 700;
    text-transform: capitalize;
    height: 60px;
    border-radius: unset;
  }

  .input-field{
    border: none !important;
  }
  
  .login input[type="submit"]:focus,
  .login input[type="submit"]:hover {
    /*background-color: #d44179;*/
    background-color: var(--loginSubmitHoverBackgroundColor);
    color: #555;
    background-color: white;
  }

  .logo-login{
      width: 242px;
      height: auto;
  }

  .container-img{
      margin: 0 auto;
  }
  
  /* modules/text.css */
  
  p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .text--center {
    text-align: center;
  }
  