@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
input {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

span {
    color: rgb(97, 38, 206);
}

html{
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  background-color: rgba(221, 221, 221, 0.205);
  border-radius: 1rem;
  width: .50rem;
  height: 1rem;
  transition: 1s;
}

html::-webkit-scrollbar-thumb {
  background: rgb(189, 189, 189);
  border-radius: 1rem;
  transition: 1s;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgb(163, 163, 163);
  border-radius: 1rem;
  transition: 1s;
}

.vision {
  cursor: pointer;
}

.check {
    margin: 0 2px 0 0;
}

.link {
    text-decoration: none;
    color: rgb(97, 38, 206);
    padding: 5px 10px 5px 10px;
}

.creditos {
    text-decoration:solid;
    border-radius: 5px;
    color: rgb(44, 44, 44);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    padding: 0 20px 0 0;
}

.creditos:hover {
    text-decoration: underline;
}

.copyright {
    bottom: 50px;
    position: fixed;
    color: rgba(0, 0, 0, 0.525);
    display: flex;
    justify-content: space-between;
    justify-items: flex-end;
}

.login {
    margin: 2rem 0 2rem 0;
    font-size: 1.5rem;
}

.form {
    width: 100%;
    height: 100vh;
    display: flex;
}

.container_input {
    margin: 5px 0 1rem 0;
}

.container_form .container_input {
    position: relative;
}

.container_input {
  position: absolute;
}

.container_input :is(i) {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
}

.container_input i{
  right: 15px;
  bottom: 50px;
  color: rgb(139, 139, 139);
}

.container_remember {
    display: flex;
    justify-content: space-between;
}

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.288);
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}

input:focus{
    border: 1px solid rgb(55, 69, 255);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.112);
}

.error-texto {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.288);
    background-color: rgb(255, 105, 105);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    display: none;
    margin-bottom: 15px;
}

.success-login {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.288);
    background-color: rgb(125, 202, 78);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    display: none;
    margin-bottom: 15px;
}

.btn_submit {
    width: 100%;
    padding: 11px;
    border: 1px solid rgba(0, 0, 0, 0.288);
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background-color: rgb(55, 69, 255);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn_submit:hover {
    border: 1px solid rgba(0, 0, 0, 0.288);
    color: #fff;
    background-color: rgb(0, 17, 255);
}

.container_1 {
    width: 50%;
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    justify-items: center;
}

.container_form {
  position: relative;
    border: 1px solid rgba(0, 51, 255, 0.123);
    box-shadow: 0 60px 50px 20px rgba(0, 26, 255, 0.068);
    border-radius: 10px;
    width: 80%;
    padding: 30px 25px;
    margin: 2rem;
}

.container_2 {
    width: 50%;
    height: 100vh;
    background-color: rgb(28, 43, 255);
}

.container_image {
    padding: 50px 0 0 0;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.container_image img {
    width: 60%;
}

.text {
    text-align: center;
    color: #fff;
    font-size: 19px;
    padding: 1rem 3rem 1rem 3rem;
}

.text1 {
    text-align: left;
    color: rgb(24, 24, 24);
    font-size: 15px;
    font-weight: 500;
    padding: 20px 0 0 0;
    display: none;
}




.bullets {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .bullets span {
    display: block;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.445);
    margin: 0 0.25rem;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .bullets span.active {
    width: 2.5rem;
    background-color: #ffffff;
    border-radius: 1rem;
  }





  .carousel {
    position: absolute;
    height: 100%;
    left: 45%;
    top: 0;
    border-radius: 10px;
    display: grid;
    grid-template-rows: auto 1fr;
    padding-bottom: 1rem;
    overflow: hidden;
    transition: 0.8s ease-in-out;
  }
  
  .images-wrapper {
    margin: 4rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  
  .image {
    width: 70%;
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
    margin: 0 auto;
    transition: opacity 0.2s, transform 0.5s;
  }
  
  .img-1 {
    transform: scale(0.4, 0.5);
  }
  
  .img-2 {
    transform: scale(0.4, 0.5);
  }
  
  .img-3 {
    transform: scale(0.3) rotate(-20deg);
  }
  
  .image.show {
    opacity: 1;
    transform: none;
  }




@media screen and (max-width: 820px) {
    .container_1 {
        width: 100%;
        height: 100vh;
        background-color: rgb(255, 255, 255);
    }
    .container_2 {
        display: none;
    }

    .container_form {
        border: none;
        width: 100%;
        padding: 50px 25px;
        margin: 0px;
    }

    .copyright {
        border-top: 1px solid rgba(0, 51, 255, 0.329);
        padding-top: 10px;
        position: relative;
        top: 30px;
        color: rgba(0, 0, 0, 0.525);
        display: flex;
        justify-content: space-between;
        justify-items: flex-end;
    }

    .container_remember {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .text1 {
        text-align: left;
        color: rgb(24, 24, 24);
        font-size: 15px;
        font-weight: 500;
        padding: 10px 0 0 0;
        display: block;
    }

}










.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.466);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.modal .modal-box {
  background: #FFF;
  border-radius: 10px;
  width: 600px;
  min-height: 400px;
  margin: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
}

.modal .modal-box .icon {
  position: absolute;
  right: 20px;
  top: 15px;
}

.modal .modal-box .icon i {
  color: #111;
  font-size: 1.2rem;
  cursor: pointer;
  transition: .5s all ease;
}

.modal .modal-box .icon i:hover {
  color: #5c6ae7;
  transform: scale(1.2);
  transform: rotate(90deg);
}

.modal .modal-box .imgBox {
  width: 150px;
  height: 150px;
}

.modal .modal-box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal .modal-box .content .title {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  color: #111;
}

.modal .modal-box .content .desc {
  margin: 20px 0;
  text-align: center;
  color: #444;
  font-size: 1rem;
}

.modal .modal-box .content .modal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.modal .modal-box .content .modal-links a {
  text-decoration: none;
  display: inline-block;
  background: #6c5ce7;
  color: #FFF;
  padding: .5rem 1.5rem;
  margin: 10px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 13px 34px -6px #6c5ce7;
}