/* *{
    margin: 0;
}
.mainbody{
    height: 100vh;
    background-color: rgb(106, 67, 67);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 450px;
    height: 450px;
    background-color: rgb(196, 205, 117);
    border-radius: 12%;
    padding: 20px;
}
 */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.mainbody{
    height: 100vh;
    background: linear-gradient(135deg, #3a6073, #16222a);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.input h1{
    text-align: center;
    font-size: 28px;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 20px;
}

.input input{
    width: 100%;
    padding: 12px 14px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
}

.input button{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    transition: 0.25s;
}

.input button:hover{
    background: #ffb300;
    transform: scale(1.02);
}

.display-result{
    background: rgba(255, 255, 255, 0.18);
    padding: 18px;
    border-radius: 16px;
    color: white;
    line-height: 1.8;
}

.display-result h3{
    font-size: 20px;
    margin-bottom: 10px;
}

.display-result h4{
    font-size: 16px;
    font-weight: normal;
}
