
::selection { /*  ? */
    background: #2D2F36;
	
  }
  
  body {
    background: #99172b; 
    font-family: 'Inter UI', sans-serif;  /* cambiar fuente (reserva...) */
    margin: 0;
    padding: 20px;
/* 	border-top: 20px solid #c49a3b; barra naranja arriba*/
	
  }
  
  .line{
	  background: #C49A3B;
	  height: 15px;
	  width: 102%;
	  margin-top: -20px;
	  margin-left: -19px;
	  position: relative;	  
  }
  
 @media (max-width: 767px) {
    .line {
		 width: 109%;
	}
  }
  
  .page {
    background: #99172b;
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
    position: absolute;
    place-content: center;
    width: calc(100% - 40px);
	
  }
  
  @media (max-width: 767px) {
    .page {
      height: auto;
      margin-bottom: 20px;
      padding-bottom: 20px;
    }
  }

.container-login {
    display: flex;
    height: 320px;
    margin: 0 auto;
    width: 640px;
    margin-top: 20px;
    
	
  }
@media (max-width: 767px) {
	.container-login {
		flex-direction: column;
		height: 630px;
		width: 320px;
    }
}

/* ----------------------- CONTAINER LOGIN ---------------------- */
.left {
	background-color: rgba(128, 128, 128, 0.7);
    height: 50%;/*calc(100% - 40px);*/
    top: 30px;
    position: absolute;
    width: 50%;
	text-align: center;
  }
@media (max-width: 767px) {
	.left {
		height: 100%;
		left: 5%;  /* 20px */
		width: calc(90% - 0px);
		max-height: 150px;

    }
}

.logo {   
    margin: 40px 40px 20px;	
 }
 
 @media (max-width: 767px) {
	.logo {
		/* height: 101px;
        width: 93px; */
		/* margin: 20px 40px 40px;	 */
	/* 	align-items: center; */
		/* margin-top: 15px;
		margin-left: 35px;	 */
		/* visibility: hidden;	 */	
    }
	
	 
	  .sustituida {
		 box-sizing:border-box;
        display: flex;
        width:100%;        /*Ancho de la imagen nueva, aunque en este caso son iguales.*/
        height:100%;       /*Alto de la imagen nueva, aunque en este caso son iguales.*/
        padding-left:100%; /*Padding igual al ancho de la imagen nueva*/      
        background: url(../image/logoweb.png) no-repeat; /*imagen de reemplazo*/   
		margin-left: 5%; 
      }
}


.right {
    background: white;
    box-shadow: -20px 0px 34px -10px rgba(0,0,0,0.75);
    color: #F1F1F2;
    position: absolute;
    width: 50%;
    height: 50%;
   
}
@media (max-width: 767px) {
    .right {
      flex-shrink: 0;
      height: 100%;
      width: 100%;
      max-height: 350px;
    }
}

svg { /*  ? */
    position: absolute;
    width: 320px;
}
path {  /*  ? */
    fill: none;
    stroke: url(#linearGradient);
    stroke-width: 4;
    stroke-dasharray: 240 1386;
}
  
.title {
    color: #99172b;/*  #828282; */
    font-size: 20px;
   /*  line-height: 1.5; interlineado*/
    font-weight: 600;
   
	margin-left: 20px;
	margin-right: 20px;
	text-align: center;
}
  
.form-login {
    margin: 5px 40px 40px 40px;
    position: absolute;
	align-items: center;
}

label {
    color:  #c2c2c5;
    display: block;
    font-size: 14px;
    height: 16px;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  
  
input {
    background: transparent;
    border: 1px solid #C49A3B;
    border-radius:  18px;
    color: black;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    outline: none !important;
    width: 100%;
}

input:hover{
	border: 1px solid #c49a3b;
	box-shadow: inset 0px 1px 2px #c49a3b;
	-moz-box-shadow: inset 0px 1px 2px #c49a3b;
	-webkit-box-shadow: inset 0px 1px 2px #c49a3b
}

input:focus{
	border: 1px solid #c49a3b;
	box-shadow: inset 0px 1px 2px #c49a3b;
	-moz-box-shadow: inset 0px 1px 2px #c49a3b;
	-webkit-box-shadow: inset 0px 1px 2px #c49a3b
}

input:invalid {
	border: 1px solid #99172b;
	box-shadow: inset 0px 1px 2px #99172b;
	-moz-box-shadow: inset 0px 1px 2px #99172b;
	-webkit-box-shadow: inset 0px 1px 2px #99172b;
}

i { 
  color: #99172b;
  margin-left: -30px;
  padding-top: 10px;  
  cursor: pointer;
}