@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Lato', sans-serif;
}
.outer-box {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top left, #3ed8ff, #a8f5ff);
}
.inner-box{
    width: 340px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: #ffffffcc;
    
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 2px 2px 5px #2773a5;
    z-index: 2;
} 
.signup-header h1{
    font-size: 2.5rem;
    color: #212121;
    
}
.input {
    margin: 10px 0;
    display: block;
    font-weight: bold;
    width: 100%;
    padding: 13px;
    border: 2px solid rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 4px;
}

.button {
    font-size: larger;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    margin: 6.1px;
    margin-top: 5px;
    cursor: pointer;
    
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background: linear-gradient(to top right, #ffffff33,#ffffffff);
    position: absolute;
}
.c1{
    top: 40px;
    left: 40px;
}
.c2{
    bottom: 40px;
    right: 40px;
}
.hidden {
    opacity: 0;
    transition:all 0.75s ;
    filter: blur(6px);
    transform: translateX(-6%);
    }
    
.show { 
        opacity: 2;
        filter: blur(0);
        transform: translateX(0);
    }
