body{
    background: linear-gradient(
        135deg,
        #ff9a9e,
        #fad0c4,
        #fbc2eb
    );
}

.head{
    align-items: center;
    padding: 180px;
    text-align: center;

}

#btn{
    border-radius: 999px;
}

#box{
    display: flex;
    gap: 10px;

    width: fit-content;
    margin: 20px auto;
    height: 50px;
    padding: 20px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);

    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);

    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

input{
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    outline: none;

    background: rgba(255,255,255,0.25);
}

#btn{
    padding: 12px 20px;
    border: none;
    border-radius: 999px;
    cursor: pointer;

    transition: 0.3s;
}

#btn:hover{
    transform: scale(1.05);
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100vh;
}