@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
*::-webkit-scrollbar {
    display: none;
}
[data-container=true] {
    height: 100vh;
    overflow: scroll;
}
.login-container {
    padding: 0 1em;
    display: flex;
    flex-direction: column;
}
.login-container header {
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: end;
}
.info {
  color: #111;  
}
.welcome {
    margin-bottom: 1em;
}
.login-container .welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 1;
}

.weclome h1 {
    font-weight: bold;
}
.tabs {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}
.tab {
    height: 2.7em;
    width: 100%;
    display: flex;
    border-radius: 9999px;
    border: 1px solid #000;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: .9em;
}
.tab[data-active="true"] {
    background: #000;
    color: #fff;
}
.email-login {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 1em;
}
.email-login button {
    height: 3.5em;
    background: #000;
    color: #fff;
    border-radius: 9999px;
    border: none;
    margin-top: auto;
}
.email-login button[disabled="true"] {
    background: #999;
}
.custom-input {
    border: 1px solid #111;
    padding: .5em 1em;
    height: 2em;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    gap: 1em;
    margin: .5em 0;
}
.custom-input input {
    border: none;
    height: 100%;
    width: 100%;
}
.social-login {
    flex-direction: column;
    gap: 1em;
}
.social-login button {
    height: 3.2em;
    border-radius: 9999px;
    margin: 0 .5em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #111;
    background: #fff;
}
.social-login button i {
    position: absolute;
    left: 1em;
    font-size: 1.1em;
}
#facebookLogin i {
    color: royalblue;
}
#gmailLogin i {
    color: tomato;
}

/* From Uiverse.io by G4b413l */ 
.three-body {
    --uib-size: 35px;
    --uib-speed: 0.8s;
    --uib-color: #5D3FD3;
    position: relative;
    display: inline-block;
    height: var(--uib-size);
    width: var(--uib-size);
    animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
   }
   
   .three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
   }
   
   .three-body__dot:after {
    content: '';
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--uib-color);
    border-radius: 50%;
   }
   
   .three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
   }
   
   .three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite ease-in-out;
    animation-delay: calc(var(--uib-speed) * -0.3);
   }
   
   .three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
   }
   
   .three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite
       calc(var(--uib-speed) * -0.15) ease-in-out;
   }
   
   .three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
   }
   
   .three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 var(--uib-speed) infinite ease-in-out;
   }
   
   @keyframes spin78236 {
    0% {
     transform: rotate(0deg);
    }
   
    100% {
     transform: rotate(360deg);
    }
   }
   
   @keyframes wobble1 {
    0%,
     100% {
     transform: translateY(0%) scale(1);
     opacity: 1;
    }
   
    50% {
     transform: translateY(-66%) scale(0.65);
     opacity: 0.8;
    }
   }
   
   @keyframes wobble2 {
    0%,
     100% {
     transform: translateY(0%) scale(1);
     opacity: 1;
    }
   
    50% {
     transform: translateY(66%) scale(0.65);
     opacity: 0.8;
    }
   }
   