@charset "UTF-8";


::selection {
  background: #2D2F36;
}
::-webkit-selection {
  background: #2D2F36;
}
::-moz-selection {
  background: #2D2F36;
}
body {
  background: white;
  font-family:  sans-serif;
  margin: 0;
  padding: 20px;
}
.page {
  background: #e2e2e5;
  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 {
  display: flex;
  height: 320px;
  margin: 0 auto;
  width: 640px;
}
@media (max-width: 767px) {
  .container {
    flex-direction: column;
    height: 630px;
    width: 320px;
  }
}
.left {
  background: white;
  height: calc(100% - 40px);
  top: 20px;
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .left {
    height: 100%;
    left: 20px;
    width: calc(100% - 40px);
    max-height: 270px;
  }
}
.login {
  font-size: 50px;
  font-weight: 900;
  margin: 50px 40px 40px;
}
.eula {
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  margin: 40px;
}
.right {
  background: #474A59;
  box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
  color: #F1F1F2;
  position: relative;
  width: 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;
}
.form {
  margin: 40px;
  position: absolute;
}
label {
  color:  #c2c2c5;
  display: block;
  font-size: 14px;
  height: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}
input {
  background: transparent;
  border: 0;
  color: #f2f2f2;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  outline: none !important;
  width: 100%;
}
input::-moz-focus-inner {
  border: 0;
}
#submit {
  color: #707075;
  margin-top: 40px;
  transition: color 300ms;
  cursor: pointer;
}
#submit:focus {
  color: #f2f2f2;
}
#submit:active {
  color: #d0d0d2;
}
 a {
 color: gray;
 text-decoration:none
 }
 a:hover {
  color: #FF0080;
 }
.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  position: relative;
}

.remember input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 15px; /* Tamaño modificado */
  height: 15px; /* Tamaño modificado */
  cursor: pointer;
  z-index: 1;
}

.remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding-left: 25px; /* Aumentado para 15px */
  color: #c2c2c5;
  font-size: 14px;
}

/* Caja del checkbox */
.remember label::before {
  content: '';
  width: 15px; /* Tamaño modificado */
  height: 15px; /* Tamaño modificado */
  border: 1px solid #c2c2c5;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

/* Checkmark */
.remember input[type="checkbox"]:checked + label::after {
  content: '\2713';
  position: absolute;
  left: 2px;
  top: -1px;
  color: white;
  font-size: 12px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkAnim 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}

@keyframes checkAnim {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  75% {
    transform: scale(1.2) rotate(5deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Efecto ripple (se movió a un pseudo-elemento diferente) */
.remember input[type="checkbox"]:checked + label::before {
  background-color: #E90064;
  border-color: #E90064;
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  from {
    box-shadow: 0 0 0 0 rgba(233,0,100,0.3);
  }
  to {
    box-shadow: 0 0 0 10px rgba(233,0,100,0);
  }
}

.remember label:hover::before {
  border-color: #E90064;
}

.remember input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 2px rgba(233,0,100,0.2);
}
