*{
    margin: 0;
    padding: 0;
}

body{
    background-image: url(Background\ image4.png);
    background-color: #f0f0f0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2{
     border: 2px solid rgb(237, 234, 234);
     border-radius: 5px;
     text-align: center;
     padding: 10px;
     background-color: #e8f4f8;
}
.container{
    width: 400px;
    height: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 10px;
    background-color: #f5dfc2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}
.container input{
    height: 40px;
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}
.container button{
    background-color: aqua;
    color: blue;
    height: 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.container button:hover{
    background-color: #00d0d0;
}
#output{
    text-align: center;

}