@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}

body{
    font-family: 'Lato', sans-serif;
    font-weight: bold;
}

.outer-box{
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top left, #3ed8ff, #a8f5ff);
}

.inner-box{
    width: 400px;
    margin: 0 auto;
    position: relative;
    top: 45%;
    transform: translateY(-50%);
    padding: 20px 40px;
    background-color: #ffffff09;
    /* background: linear-gradient(to top left, #ffffffff, #ffffff33); */
    backdrop-filter: blur(8px) ;
    border-radius: 8px;
    box-shadow: 2px 2px 5px ;
    /* border: 2px solid black; */
    z-index: 2;

}

.signup-header h1{
    font-size: 2.5rem;
    color: #212121;
}

.signup-header p{
    font-size: 0.9rem;
    color: #555;
}

.signup-body{
    margin: 20px;
}

.signup-body p{
    margin: 4px 0;

}

.signup-body p label{
    display: block;
    font-weight: bold;
    margin-bottom: -15px;
}

.signup-body p input{
    width: 100%;
    padding: 10px;
    border: 2px solid #cccc;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 4px;

}

/* #submit */
#submit{
    background-color: #3498db;
    color: white;
    border: none;
}

#submit:hover{
    cursor: pointer;
    background-color: #273a55;

}

.signup-footer p{
    text-align: center;
    color: #555;

}

.signup-footer p a {
    color: #273a55;

}

.circle{
    width: 200px;
    height: 200px;
    border-radius: 100px ;
    background: linear-gradient(to top right, #ffffff33, #ffffffff);
    position: absolute;
}

.c1{
    top: 100px;
    left: 40px;

}

.c2{
    bottom:200px ;
    right: 40px;

}