body{
    position: relative;
    background-image:  radial-gradient(circle at 50% 100%, rgba(70, 85, 110, 0.5) 0%, transparent 60%),
          radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.4) 0%, transparent 70%),
          radial-gradient(circle at 50% 100%, rgba(181, 184, 208, 0.3) 0%, transparent 80%);
    width: 100%;
    min-height:100vh;
    background-color: black;
    inset: 0;
    z-index: 0;
    margin: 0;
    font-family: "Montserrat";
}

.formularios{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cuadro-validacion{
    background-color: rgba(255, 255, 255, 0.75);
    width: 18%;
    min-width: 320px;
    padding: 25px;
    border-radius: 20px;
    animation: centro 2s ease 0s 1 normal forwards;
}


.profile{
    width: 100px;
    height: 100px;
}
.img-profile{
    display: flex;
    justify-content: center;
}

.formulario{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.formulario input{
    width: 90%;
    height: 40px;
    border: 0;
    font-size: 0.875rem;
}
.formulario button{
    width: 90%;
    background-color: #33385c;
    border: 0;
    border-radius: 20px;
    height: 40px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}
.input{
    width: 100%;
    min-height: 40px;
    background-color: white;
    gap: 10px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.formulario input:focus{
    outline: none;
}
.pie-formulario{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.check{
    width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    font-size: 0.875rem;
    
}
.check input[type="checkbox"]{
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none; 
  width: 20px; 
  height: 20px;
  border: 1px solid #000000;
  border-radius: 3px;
  margin: 0; 
  padding: 0;
  position: relative;
  cursor: pointer;
}
.check input[type="checkbox"]:focus{
    outline: #33385c;
}
.check input[type="checkbox"]:checked{
    background-color: #33385c;
    color: white;
}
.check input[type="checkbox"]:checked::after {
  content: '✔';
  color: white;
  font-size: 18px;
  position: absolute;
  left: 3px;
  top: -1px;
}

.check a{
    color: black;
    text-decoration: none;
}
.check a:visited{
    color: #000000;
    text-decoration: none;
}
.check a:hover{
    text-decoration: underline;
}

.registro{
    font-size: 0.875rem;
    text-align: center;
    margin-top: 10px;
}
.oculto{
    display: none;
    pointer-events: none;
    animation: myAnim 2s ease 0s 1 normal forwards;
}

/* Transición View */
@view-transition {
  name: login, registro;
}

@keyframes myAnim {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(0.6);
	}
}


@keyframes centro {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}