input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
}

::-webkit-input-placeholders {
  opacity: 0;
  transition: inherit;
}

.ContainerLogin {
  overflow-y: scroll;
  position: relative;
  height: 100vh;

}

.ContentLogin {
  height: 70vh;
  width: 92vw;
  background: white;
  position: absolute;
  top:320px;
  left: 50%;
  -webkit-transform: translate(-50%, -70%) scale(0.8);
  transform: translate(-50%, -70%) scale(0.8);
  z-index: 9;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ContentLogin--active {
  -webkit-transform: translate(-50%, -300px) scale(1);
  transform: translate(-50%, -50%) scale(1);
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top:280px;
}

.ContentLogin__header {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}

.ContentLogin__header h5 {
  font-weight: normal;
  font-size: 15px;
  color: #999999;
}

.ContentLogin__wrapper {
  width: 80%;
  padding: 20px 0;
}

.ContentLogin__wrapper__process {
  padding: 20px 10px;
}

.ContentLogin__item {
  margin-bottom: 25px;
  position: relative;
}

.ContentLogin__item__input {
  width: 100%;
  border-bottom: 1px solid #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ContentLogin__item__input span {
  display: flex;
  color: #1f3deb;
}

.ContentLogin__item__input input {
  width: 100%;
  border: 0;
  padding: 0px 0;
  outline: none;
  color: #333333;
}

.ContentLogin__item__input input:disabled {
  background-color: white;
}

.ContentLogin__item__input div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ContentLogin__item__input strong {
  color: #ffc648;
}

.ContentLogin__item>span {
  font-size: 10px;
  color: #1f3deb;
}

.ContentLogin__item label {
  color: #a0a0a0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

.ContentLogin__button button {
  width: 100%;
  background: #1f3deb;
  padding: 10px 0;
  text-align: center;
  border: 0;
  color: white;
  border-radius: 5px;
}

.ContentLogin__button button:disabled  {
  background: #c5c6cc;
  color: gainsboro;
}

.ContentLogin__link {
  padding: 15px 0 0;
  text-align: center;
}

.ContentLogin__link a {
  color: #a0a0a0;
  font-size: 12px;
  text-decoration: none;
}

.ContentRegister {
  height: 70vh;
  width: 92vw;
  background: white;
  position: absolute;
  top: 285px;
  left: 50%;
  -webkit-transform: translate(-50%, -30%) scale(0.8);
  transform: translate(-50%, -30%) scale(0.8);
  z-index: 9;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.ContentRegister--active {
  top: 400px;
  min-height: 550px;
  height: auto;
  -webkit-transform: translate(-50%, -277px) scale(1);
  transform: translate(-50%, -277px) scale(1);
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 80px;
}

.ContentRegister__wrapper {
  padding: 20px 0 0;
}

.ContentRegister__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 12px 10px;
}

.ContentRegister__item {
  margin: 0 5px;
  width: 100%;
}

.ContentRegister__item label {
  color: #a0a0a0;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ContentRegister__item__input {
  width: 100%;
  border-bottom: 1px solid #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ContentRegister__item__input input {
  width: 100%;
  border: 0;
  padding: 10px 0;
  outline: none;
  color: #333333;
}

.ContentRegister__terms {
  padding: 20px 0px;
  font-size: 13px;
  color: #1f3deb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ContentRegister__button button {
  width: 100%;
  background: #1F3DEB;
  padding: 10px 0;
  text-align: center;
  border: 0;
  color: white;
}

.ContentRegister__button button:disabled {
  background: #C7C7C7
}

.ContentRegister__footer {
  width: 100%;
  text-align: center;
  padding: 20px 0 10px;
}

.ContentRegister__footer h5 {
  font-weight: normal;
  font-size: 15px;
  color: #999999;
}

.LabelAlert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2px;
  margin-top: 3px;
  position: absolute;
  right: 0;
  top: 0;
}

.LabelAlertPopUp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.LabelAlert__content {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.LabelAlert__content strong {
  color: #ffc648;
  /* -webkit-animation: vibrate 0.5s 0s; */
  /* animation: vibrate 0.5s 0s; */
  animation: vibrate .3s infinite;
  /* animation-iteration-count: 3; */
}

.LabelAlert__circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  z-index: 16;
  -webkit-animation: LabelAlertAnimation-circle 0.8s 0s forwards;
  animation: LabelAlertAnimation-circle 0.8s 0s forwards;
}

.LabelAlert img {
  position: absolute;
  z-index: 17;
  opacity: 0;
  -webkit-animation: LabelAlertAnimation-opacity 0.5s 0s forwards;
  animation: LabelAlertAnimation-opacity 0.5s 0s forwards;
}

.LabelAlertPopUp img {
  position: absolute;
  z-index: 17;
  opacity: 0;
  -webkit-animation: LabelAlertAnimation-opacity 0.5s 0s forwards;
  animation: LabelAlertAnimation-opacity 0.5s 0s forwards;
}

.LabelAlert__line {
  width: 30px;
  height: 1px;
  background: blue;
  position: absolute;
  z-index: 15;
}

.LabelAlert__line:nth-last-of-type(1) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  background: #1f3deb;
}

.LabelAlert__line:nth-last-of-type(2) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background: #ffc648;
}

.LabelAlert__line:nth-last-of-type(3) {
  -webkit-transform: rotate(-120deg);
  transform: rotate(-120deg);
  background: #ff2a06;
}

.alertLogin {
  border: 0px solid transparent;
  border-radius: 0;
  margin-top: -20px;
}

@-webkit-keyframes LabelAlertAnimation-circle {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.1);
    transform: scale(2.1);
  }
}

@keyframes LabelAlertAnimation-circle {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.1);
    transform: scale(2.1);
  }
}

@-webkit-keyframes LabelAlertAnimation-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes LabelAlertAnimation-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vibrate {
  0% {
    margin-left: 0;

    }
  25% {
    margin-left: 5px;
   
    }
  50% {
    margin-left: 0;

    }
  75% {
    margin-left: -5px;

    }
  100% {
    margin-left: 0;
 
    }
}
.ContentLogin__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
  /* margin-bottom: 30px; */
  position: relative;
  height: 70px;
  margin-top: -2px;
}

.ContentLogin__field-beneficiarie {
  margin-bottom: 0;
  height:60px;
  margin-top: 10px;
}
.ContentLogin__field-ccinfo {
  margin-bottom: 0;
  height:60px;
  margin-top: 10px;
  margin-bottom: 11px;
}
.ContentLogin__field label,
.ContentLogin__field input {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.ContentLogin__field input {
  font-size: 15px;
  height: 40px;
  border: 0;
  /* border-bottom: 1px solid #999999; */
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
  background:transparent;
  margin-top: -6px;
}

.ContentLogin__field input:focus {
  outline: 0;
  /* border-bottom: 2px solid #222222; */
}

.ContentLogin__field label {
  color: #666666;
  font-size: 14px;
}

.ContentLogin__field input:placeholder-shown + label {
  cursor: text;
  max-width: 1%;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: translate(0, 2.125rem) scale(1.2);
  transform: translate(0, 2.125rem) scale(1.2);
  z-index: -1;
  margin-top: -7px;
}

.ContentLogin__field input:focus::-webkit-input-placeholder {
  opacity: 1;
}

.ContentLogin__field input:not(:placeholder-shown) + label,
.ContentLogin__field input:focus + label {
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  cursor: pointer;
  margin-bottom: 0;
   text-align: left;
  /* margin-top: 9px; */
}
 .ContentLogin__field input::placeholder {
    color: transparent;
  }

.ContentLogin__field--err label {
  /* color: #c13515; */
  animation: ContentLogin__field-err 0.1s;
  animation-iteration-count: 3;
}

.ContentLogin__field--err input {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /* border-bottom: 1px solid #c13515; */
}

.ContentLogin__field--err input:focus {
  outline: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /* border-bottom: 2px solid #c13515;*/
}
@keyframes ContentLogin__field-err {
  0% {margin-left: 0;}
  25% {margin-left: 2px;}
  50% {margin-left: 0;}
  75% {margin-left: -2px;}
  100% {margin-left: 0;}
}


.ContentLogin__field--success label {
  /* color: #1f3deb; */
  text-align: left;
}

.ContentLogin__field--success input {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /* border-bottom: 1px solid #1f3deb; */
}

.ContentLogin__field--success input:focus {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  outline: 0;
   /* border-bottom: 2px solid #1f3deb;*/
}

.ContentLogin__field--success input:disabled {
 color:#000;
}
/*
FIELD INPUT
*/

.FieldInput{
  display:flex;
  height: 95px;
  position:relative;
  /* background: rgba(0,123,255,.25); */
  /* margin-bottom: 8px; */
  width: 100%;
  padding-left: 30px;
  padding-right: 20px;
  padding-bottom: 0;
  /* background: red; */
}
.FieldInputIcone{/* padding: 0px 30px 0 0px; */height: 97%;display: flex;align-items: center;width: 20%;/* background: red; */justify-content: left;}
.FieldInputIcone svg{width:23px;height: 25px;}
.FieldInputIcone img{width:25px;height: 25px;}
.FieldInputItem{position: relative;width: 100%;height: 100%;display: flex;flex-direction: column;justify-content: center;/* background: green; *//* margin-top: -10px; */}
.FieldInputItemLine{width: 100%;height: 1px;background: #bdbdbd;bottom: 0px;position: absolute;}
.FieldInputIconeEdit{/* width:5%; */height: 100%;display:flex;justify-content:center;align-items:center;}
.FieldInputIconeEdit svg{width: 13px !important;margin-top: -20px;}
.FieldInputIconeEdit img{width: 13px !important;margin-top: -20px;}
.FieldInputItemInputFile:disabled{
  color: #999999;
  font-size: 12px;
}
.FieldInputItemLineCheckbox{width: 115%;height: 1px;background: #bdbdbd;bottom: 0px;position: absolute;}

.FieldInputItemLineTop{
  width: 100%;
  height: 1px;
  background: #bdbdbd
  ;top: 0px;position: absolute;}

.AccountContainer{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.AccountHeader{
  display: flex;
  width: 94%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top:20px;
}
.AccountHeaderIcone{

}
.AccountHeaderIcone svg{
width: 30px;
height: 30px;
}
.AccountHeaderName{width: 94%;font-family: 'Poppins-Medium';display: flex;justify-content: space-between;align-items: center;position: relative;height: 66px;margin-top: -10px;}
.AccountIconeEdit{display: flex;justify-content: flex-end;width: 20px;/* position: absolute; *//* right: -12px; */}
.AccountIconeEdit svg{
display: flex;
width: 11px;
justify-items: flex-end;
}
.AccountLine{
  position:absolute;
  height:1px;
  width: 80%;
  background: #cacaca;
  bottom: 0;
  right: 0;
  }
.AccountField{
  display: flex;
  width: 100%;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  margin-bottom: 1px;
}
.AccountFieldName{width:100%;font-family: 'Poppins-Regular';display: flex;justify-content: space-between;align-items: center;position: relative;height: 100%;/* margin-top: -10px; */}
.AccountFieldIcone{
  padding:20px 30px;
}
.AccountFieldIcone svg{
width: 30px;
height: 30px;
}
.AccountFieldEdit svg{display: flex;width: 11px;justify-items: flex-end;margin-top: -25px;}
.AccountFieldLine{
  position:absolute;
  height:1px;
  width: 100%;
  background: #cacaca;
  bottom: 0;
  right: 0;
  }
  .AccountFieldText{
      display: flex;
      flex-direction: column;
      /* margin-bottom: 10px; */
  }
    .AccountFieldText label{
      font-family: 'Poppins-Regular';
      font-size: 13px;
      color: #999;
      padding-bottom: 0;
      margin-bottom: 7px;
  }

  .FieldInputHeader{
    /* background: red; */
    height: 150px;
  }
  .FieldInputHeaderItemIcone svg{
    width: 30px;
  }
 
  .FieldInputHeaderItemIcone{
    /* width:30px; */
    display: flex;
    justify-content: center;
    margin-left: -60px;
  }
  .FieldInputHeaderItemText{
    width: 75%;
    text-align: center;
    margin-top: -5px;
    /* margin-left: -60px; */
  }
  .FieldInputHeaderItem{
    margin-top: 1px;
    height: 150px;
    width: 80%;
    /* padding-right: 0px; */
    /* margin-left: -50px; */
  }
  .FieldInputIconeEditHeader{
    /* background:aliceblue; */
    align-items: flex-end;
    padding-bottom: 10px;
  }