@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');


*{
    margin: 0%;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    transition: all ease 300ms;
}

body{
    background-color: #7b89f0;
    height: 100vh;
    overflow: hidden;
   
}




.circles{
    position: absolute;
    z-index: -100;
    background-image: radial-gradient(#9760ff,#5660dc);
    right: -500px;
    bottom: -700px;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
}
.circles2{
    position: absolute;
    z-index: -100;
    background-color: #5660dc;
   left: -100px;
   top: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}
.circles3{
    width: 600px;
    height: 400px;
    background-image: radial-gradient(50% 50% at center, #00000045 0% 70%,rgba(175, 106, 106, 0) 71% 100%);
    background-size: 40px 40px ;
 
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
}
.mainform{
    width: 80%;
    height: 80vh;
    background-color: rgba(104, 104, 104, 0.473);
    margin: auto;
    margin-top: 10vh;
    border-radius: 15px;
    box-shadow: #0000006b 0px 0px 70px ;
    display: flex;
    overflow: hidden;
   

}
.image{
    background-color: #faf8fd;
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    padding: 20px;
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    img{
        width: 100px;
        height: auto;
        animation: rotate 2s ease 1;
    } 
    .container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        background-color: #ffffff00;
        p{
            font-weight: 600;
            font-size: 60px;
        }
    }
    .content{
    
        width: 90%;
        height: 350px;
        border-radius: 20px;
        background-color: #faf8fd;
        overflow: hidden;
        white-space: nowrap;
       
    }
}

@keyframes rotate {
    100%{
        transform: rotate(360deg);
    }
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
  }
  
  .slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  
  .fade {
    animation: fadeEffect 5s ease infinite;
  }
  
  @keyframes fadeEffect {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  .text {
    font-size: 40px;
    padding: 20px;
    text-wrap: wrap;
    font-weight: 300;
    margin: auto;
    font-family: "Karla", sans-serif;
    user-select: none;
    background-color: #faf8fd;
    height: 100%;
  }

  .login-form{
    width: 60%;
    height: 100%;
    position: relative;
    background-color: #313131;
    border-radius: 20px;
    padding: 20px;
    color: white;
    padding-left: 130px;
    h1{
        margin-bottom: 60px;
        font-size: 50px;
    }

}
  .sign-up-button,.login-button{
    width: 100%;
    height: max-content;
    display: flex;   
    justify-content: right;
    gap: 1%;
    align-items: center;
    margin-bottom: 25px;
    background-color: #faf8fd00;

    p{
        font-size: 24px;
        color: rgb(114, 114, 114);
        text-decoration: underline;
        text-decoration-color: rgb(133, 133, 133);
        text-underline-offset: 0.3rem;
        cursor: pointer;
    }
    button{
        cursor: pointer;
        text-decoration:  none;
        width: 110px;
        height: 50px;
        border-radius: 50px;
        border: wheat 1px solid;
        background-color: transparent;
        color: white;
        font-size: 16px;
        font-weight: 500;
    }
    p:hover,button:hover{
        opacity: 0.7;
        background-color: #363636;
    }
  }
  form{
    label,input{
        display: block;
        font-size: 25px;
        margin-bottom: 30px;
        border-radius: 10px;
        width: 70%;
    }
    label{
        margin-bottom: 15px;
    }
    input:focus{
        border: none;
        outline: none;
    }
    input{
        border: none;
        padding: 15px;
    }
    button{
        width: 160px;
        height: 60px;
        font-size: 20px;
        border-radius: 10px;
        color: white;
        border: none;
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.205);
        cursor: pointer;
        margin-bottom: 42px;
    }
    button:hover{
        background-color: #6363634b;
    }
    #Password{
        margin-bottom: 4px;
    }
    .forget{
        width: 70%;
        text-decoration: underline;
        font-style: oblique;
        text-align: right;
        margin-bottom: 20px;
        
        a:hover{
            cursor: pointer;
            color: #56ffaa;

            font-size: 20px;
        }
    }

    .line{
        width: 90%;
        height: 1px;
        background-color: #d3d3d3;
        margin-bottom: 40px;
        position: relative;
        .or{
            position: absolute;
            z-index: 10;
            background-color: #313131;
            color: #7e7e7e;
            padding: 2px;
            top: -16px;
            right: 50%;
            display: inline;
            font-size: 24px;
        }
    }
    .t-p{
        width: 90%;
        /* height: 183px; */
        background-color: #565fdc00;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        font-size: 30px;
    }
    i{
        cursor: pointer;
        background-color: #ffffff00;
    
        border-radius: 50%;
        font-size: 60px;
    }
    i:hover{
        color: #adffd6;
        filter: blur(0.1px);
       
    }
  }

.sign-up{
    display: none;
    position: absolute;
    width: 100%;
    height: 77%;
    color: black;
    padding: 20px 20px 20px 80px;
    background-color: #adffd6;
    z-index: 100;
    top: 0px;
    left: 0px;
    border-radius: 20px 20px 0px 0px;
    transform-origin: top;
    .login-button{
        margin-bottom: 0px;
        button{
            background-color: #313131;
        }
        p{
            color: #313131;
        }
        p:hover{
            background-color: transparent;
            color: black;
            opacity: 1;
        }
    }
    .signup-title{
        width: 100%;
        margin-bottom: 20px;
        background-color: #ffffff00;
        h1{
            margin: 0px;
            font-size: 45px;
        }
        p{
            color: #313131;
        }
       

    }
    form > *{
        margin: 0px;
    }
    form{
        button{
            background-color: #313131;
        }
        input{
            background-color: #313131;
            margin-bottom: 20px;
            color: aliceblue;
        }
        #Password{
            margin-bottom: 20px;
        }
        label{
            margin-bottom: 5px;
        }
    }
}

@keyframes signup {
    0%{
        height: 0%;
        filter: blur(50px);
    }
    100%{
        height: 77%;
        filter: blur(0px);
    }
}
@keyframes Fade_Down {
    0%{
        height: 77%;
        filter: blur(0px);
    }
    100%{
        height: 0%;
        filter: blur(50px);
    }
}