@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,#ffbfc8,#9f7ac9);
}

.inner-box{
    width: 400px;
    margin: 0 auto;
    position: relative;
    top: 40%;
    transform: translateY(-50%);
    padding: 20px 40px;
    /* background-color:#ffffff09; */
    backdrop-filter: blur(8px);
    background: linear-gradient(to top left,ffffffff,ffffff55);
    border-radius: 8px;
    box-shadow: 2px 2px 5px  #9262c9 ;
    z-index: 2;

}

.signup-header h1{
    font-size: 2.5rem;
    color: rgba(34, 31, 31, 0.897);
}

.signup-header p{
    font-size: 1rem;
    color:  rgba(34, 31, 31, 0.897);
    font-weight: bold;
}

.signup-body{
    margin: 20px 0;
}

.signup-body p label{
    display: block;
    font-size: large;
    font-weight: bold;
    color: rgba(18, 17, 17, 0.836);
}

.signup-body p input{
    width: 100%;
    padding: 10px;
    border: 2px solid #cccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 4px;
}

.signup-body p input[type="submit"]{
    background-color: #2b94b7;
    color: whitesmoke;

}

.signup-body p input[type="submit"]:hover{
    cursor: pointer;
    background-color: #0d6172;
}

.signup-footer p{
    color: #555;
    font-weight: 600;
    text-align: center;
}

.signup-footer p a{
    color: #2b5cb8;
}

.circle{
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background: linear-gradient(to top right ,#a4a6c5,#6665dd);
    position: absolute;
}

.c1{
    top: 100px;
    left: 40px;
}

.c2{
    bottom: 200px;
    right: 80px;
}

