:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --black: #000000;
  --icon-size: 150px;
  --icon-margin-bottom: 60px;
}


html,
* {
  font-family: "robotoregular", sans-serif;
  /* font-family: 'Roboto'; */
  box-sizing: border-box;
  /* color: white !important; */
}



body {

  background: none transparent;

  margin: auto;
  /* height:50vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.web-mode {
  background-image: url('../img/leroymerlin.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* height: 100vh; */
  /* width: 1760px; */
  background-size: 100vw 100vh;
  /* background-position-y: -163px; */
  /* height: 754px; */
  margin-top: 30vh;
  /* margin-top: 159px; */
}

/* @media only screen and (max-width: 1600px) {

  body{
    background-size: 1600px 900px;
    background-position-y: -137px;
    height: 628px;
  }

} */

.hidden {
  display: none !important;
}

.container {
  width: 500px;
  margin: auto;
}


form {
  display: flex;
  flex-direction: column;
  align-items: center;
}




.field {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.field__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field__label-text {
  display: inline-block;
  height: 25.6px;
  margin-left: 10px;
  object-fit: contain;
  font-family: Roboto;
  font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: var(--black);
}

.field__label-error {
  color: #FF0000;
  font-weight: bold;
  /* margin-left: 300px; */
}

.field__input {
  width: 455px;
  height: 46px;
  margin-bottom: 18px;
  padding: 10px 42.2px 10.4px 18.2px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  font-size: 20px;
}

.success {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success__icon {
  background-image: url('../img/pagamento-sucesso-LM.png');
  background-repeat: no-repeat;
  height: var(--icon-size);
  width: var(--icon-size);
  background-size: var(--icon-size) var(--icon-size);
  margin-bottom: var(--icon-margin-bottom);
}

.success__text {
  color: #707070;
  text-align: center;
} 


.error {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error__icon {
  background-image: url('../img/servico-temporariamente-indisp-LM.png');
  background-repeat: no-repeat;
  height: var(--icon-size);
  width: var(--icon-size);
  background-size: var(--icon-size) var(--icon-size);
  margin-bottom: var(--icon-margin-bottom);
}

.error__text {
  color: #FF0000;
  text-align: center;
}







.keypad-wrapper {
  width: 360px;
  height: 394.5px;
  margin: auto;
  object-fit: contain;
}


.keypad-wrapper__btn {
  width: 96.1px;
  height: 80.8px;
  border-radius: 12px;
  box-shadow: 0 2px 4px 0 rgba(86, 86, 86, 0.75);
  background-color: var(--white);
  margin: 11px;

  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  color: #000;
}


.submit__btn {
  background-color: #46a610;
  color: #ffffff;

  /* font-family: "robotoregular", sans-serif; */
  font-size: 35px;
  font-style: normal;
  font-weight: bold;
  font-stretch: normal;

  width: 450px;
  height: 90px;
  margin-top: 41px;
  object-fit: contain;
  border-radius: 25px;
  border-style: none;
}