*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

main{
    padding: 10px 0;
    padding-bottom: 80px;
    background: radial-gradient(rgb(174 255 93), rgb(139 255 165));
    width: 100vw;
    height: 100vh;
}

.container{
    background-color: rgb(99 90 90 / 94%);
    display: flex;
    width: 270px;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 25%;
    padding: 15px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid black;
    border-radius: 15px;
    transform: scale(1.01,1.01);
    box-shadow: inset -4px 0px 10px #ffffff, inset 4px 2px 12px rgb(0 0 0 / 63%);
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin: 5px 0;
    width: 100%;
}

.input{
    width: 100%;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 1.2rem;
    padding: 20px 10px;
    border-radius: 8px;
    background-color: #eeeeee;
    border: 2px solid black;
    text-align: end;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset -5px -5px 12px #ffffff,inset 5px 5px 12px rgba(0, 0, 0, .16);
}
.input:hover{
    transform: scale(1.02,1.02);
}

.b1{
    margin: 2px 2px;
    padding: 12px 15px;
    font-weight: 500;
    background-color: rgba(242, 242, 241, 0.949);
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid black;
    box-shadow: inset -5px -5px 12px #ffffff,inset 5px 5px 12px rgba(0, 0, 0, .16);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.b1:hover{
    transform: scale(1.05,1.05);
}