*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

.container{
    height: 100vh;
    width: 100vw;
    background-color: blueviolet;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

form{
    height: 100%;
    display: flex;
    justify-content: space-around;
}
input{
    height: 100%;
}
#inp{
    width: 200px;
}
#btn{
    width: 80px;
    background-color: rgb(0, 85, 255);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.head{
    height: 40px;
    width: 300px;
}

.card{
    height: 300px;
    width: 400px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innercard{
    height: 50%;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}