@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
}

body {

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(60,60,60);
}
.logo{
    margin: 0px;
    padding: 0;
    color: white;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    opacity: 0.8;
    font-weight: 600;
}
.floating-circle, .lucid {
  position: fixed;
  width: 50vh;
  height: 50vh;
  bottom: 20vh;
  right: -20vw;
  background: black;
  border-radius: 50% 47% 53% 50% / 50% 45% 55% 50%;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
  animation: morph 4s ease-in-out infinite, drift 30s ease-in-out infinite;
  filter: blur(6px);
}

.lucid{
    background: white;
    background-color: white;
    width: 15px;
    height: 15px;
    opacity: 0.8;
    position: relative;
    bottom: inherit;
    right: inherit;
    filter: blur(0px);
    margin-right: 5px;
    padding: 0;
    z-index: 10;
    animation: morph 4s ease-in-out infinite;
}
.lucid-bbc{
    background-color: black;
    width: 35px;
    height: 35px;
}

@keyframes morph {
  0% {
    border-radius: 50% 47% 53% 50% / 50% 45% 55% 50%;
    transform: scale(1);
  }
  25% {
    border-radius: 60% 40% 65% 35% / 60% 40% 60% 40%;
    transform: scale(1.04);
  }
  50% {
    border-radius: 45% 55% 40% 60% / 42% 58% 45% 55%;
    transform: scale(0.96);
  }
  75% {
    border-radius: 58% 42% 55% 45% / 50% 60% 40% 50%;
    transform: scale(1.05);
  }
  100% {
    border-radius: 50% 47% 53% 50% / 50% 45% 55% 50%;
    transform: scale(1);
  }
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-1vw, 0.5vh) scale(1.02); }
  50%  { transform: translate(-1.5vw, -1vh) scale(0.98); }
  75%  { transform: translate(-0.5vw, 1vh) scale(1.01); }
  100% { transform: translate(0, 0) scale(1); }
}

.auth-container {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 20px;
}

.auth-card {
    background-color: white;
    border-radius: 30px;
    border:1px solid rgb(220,220,220);
    box-shadow: 2px 2px 2px rgba(0.95, 0.95, 0.95, 0.01);
    margin: 100px auto;
    padding: 20px;
    width: 98%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-card h1{
    font-size: 22px;
    text-align: center;
    margin: 10px auto;
    font-weight: 500;
}
.auth-card p{
    color: #757575;
    font-size: 14px;
    margin: 12px ;
    text-align: center;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 300px;
    padding: 14px 16px;
    background-color: white;
    border: 1px solid black;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 2px 2px 2px rgba(0.95, 0.95, 0.95, 0.01);
}

.google-btn:hover {
    background-color: #f8f8f8;
}

.google-icon {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.divider {
    width: 100%;
    text-align: center;
    margin: 24px 0;
    color: #757575;
    font-size: 14px;
    position: relative;
}

.email-form {
    display: flex;
    width: 95%;
    border: 1px solid black;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 2px 2px rgba(0.95, 0.95, 0.95, 0.01);
}

#email-input {
    flex-grow: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    font-size: 16px;
}

#email-submit {
    background: transparent;
    border: none;
    padding: 0 8px;
    cursor: pointer;
    position: absolute;
    right: 0;
    height: 100%;
    color: black;
    transition: color 0.3s;
}

#email-submit:hover {
    color: #333;
}

.auth-message {
    margin-top: 16px;
    color: #4285F4;
    font-size: 14px;
    text-align: center;
}
.hide{
    display: none;
}



@media screen and (min-width: 768px) {
    .auth-container {
        padding: 40px;
    }
    .google-btn, .email-form{
        width: 50%;
    }
    .auth-card {
        padding: 48px 32px;
        width: 35vw;
        margin: auto;
    }
    .floating-circle{
        width: 50vw;
        height: 50vw;    
        bottom: 20vh;
        right: 20vw;          
    }    
}