:root{
  /*===== Colores =====*/
  --first-color: #1A73E8;
  --input-color: #80868B;
  --border-color: rgb(33, 33, 53,0.75);
  /*===== Fuente y tipografia =====*/
  --body-font: 'Roboto', sans-serif;
  --normal-font-size: 1rem;
  --small-font-size: .75rem;
}

.eye_icon{
  position: absolute;
  right: 10px;
  top: 14px;
  cursor: pointer;
  z-index: 20;
  width: 20px;
  height: 20px;
}

.popup_backup{
  background-color: rgb(0, 119, 255,0.54);
  backdrop-filter: blur(5px);
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  height: 100vh;
  z-index: 10;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.opaque{
  display: flex !important;
}
.switch-field {
	display: flex;
	overflow: hidden;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
  text-transform: uppercase;
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 0.6);
	font-size: 1.125rem;
	line-height: 1;
	text-align: center;
	padding: 8px 16px;
	margin-right: -1px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #1883ff;
    color: #fff;
	box-shadow: none;
}
.labelService{
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #000 !important;
}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}
.textarea_input{
  resize: none;
  height: 150px !important;
}

.l-form{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.form{

  border-radius: 15px;
  background-color: white;
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 44px 100px;
  box-shadow: 0px 5px 15px #0458B7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.two_buttons{
  display: flex;
  flex-direction: row;
  margin-top: 100px;
  justify-content: space-around;
}
.formdata{
  position: fixed;
  overflow-y: scroll;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  border-radius: 15px;
  max-height: 90%; 
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 30px;
  box-shadow: 0px 5px 15px #0458B7;
}

.zgoda_button{
  margin: auto;
}

.wrong_data{
  display: none;
  text-align: left;
  font-size: 12px;
  margin-top: -10px;
  align-self: flex-start;
  color: #EA4234;
}
.form__title{
  text-align: center;
  font-weight: 600;
  font-size: 24px;
}
.form-p{
  font-size: 1rem;
}

.close_button{
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
}
.small_data{
  display: flex;
  align-items: left;
  margin-top: -10px;
}
.form__div{
  width: 100%;
  max-width: 400px;
  position: relative;
  height: 48px;
}
.form__input{
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: var(--normal-font-size);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  outline: none;
  padding: 14px 23px;
  background-color: #fff;
  z-index: 1;
}
.form__label{
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  padding: 0 .25rem;
  background-color: #fff;
  color: var(--input-color);
  font-size: var(--normal-font-size);
  z-index: 3;
  transition: .3s;
}
.form__button{
  display: block;
  padding: .75rem 2rem;
  margin:auto;
  outline: none;
  border: none;
  background-color: var(--first-color);
  color: #fff;
  font-size: var(--normal-font-size);
  border-radius: .5rem;
  cursor: pointer;
  transition: .3s;
}
.form__button:hover{
  box-shadow: 0 10px 36px rgba(0,0,0,.15);
}

/*Input focus move up label*/
.form__input:focus + .form__label{
  top: -.5rem;
  left: .8rem;
  color: var(--first-color);
  font-size: var(--small-font-size);
  font-weight: 500;
  z-index: 10;
}

/*Input focus sticky top label*/
.form__input:not(:placeholder-shown).form__input:not(:focus)+ .form__label{
  top: -.5rem;
  left: .8rem;
  font-size: var(--small-font-size);
  font-weight: 500;
  z-index: 10;
}

/*Input focus*/
.form__input:focus{
  border: 2px solid var(--first-color);
}


@media screen and (max-width:788px){

.switch-field label {
    font-size: 1rem;
    text-transform: uppercase;
}

  .labelService{
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    color: #000 !important;
  }

  .form__input:focus + .form__label{
    top: -1rem;
  }
  #reloadpage{
    order: 2;
  }
  .two_buttons{
    flex-direction: column ;
    gap: 10px;
  }
.close_button{
  width: 20px;
}
.form{
  padding: 50px 20px 30px;
  max-width: 320px;
}
.formdata{
  padding: 50px 10px 30px;
  max-width: 320px;
}
.form__div{
  max-width: 280px;
}
  .logo{
      width: 58px;
  }
}

