body {
    background: linear-gradient(240deg,  rgb(98, 0, 255), #ffffff);
    font-family: system-ui, -apple-system, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h1{
    font-size: 65px;
    margin-bottom: 30px;
    border-radius: 50px;
    text-shadow: 3px 3px rgb(0, 0, 0);
    color: white;
    transition: all 0.3s linear;
}
h1:hover{
    text-shadow: 2px 2px white;
    color: #000;
    
}

.container-box {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-shadow: 3px 5px rgb(98, 0, 255);
}

#inputs {
    width: 100px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 8px;
    padding: 5px 10px;
    color: rgb(0, 0, 0);
    box-shadow: 3px 5px rgb(0, 0, 0);    
}

#inputCon input,
#searchIn {
    width: 80px;
    display: inline-block;
    margin: 5px;
    border-radius: 8px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-align: center;
}
#submitbtn{
    background-color: rgb(98, 0, 255) !important;
    
}
button {
    margin: 5px 4px;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    background-color: rgb(98, 0, 255) !important;
    box-shadow: 10px 5px rgb(0, 0, 0);
    transition: all 0.3s linear;
}

button:active{
    box-shadow: none;
}

#reset{
    
    background-color: rgb(255, 0, 0) !important;
}

#ans {
    font-weight: bold;
    color: rgb(48, 79, 218);
    margin-top: 20px;
    background-color: #eef6ff;
    padding: 10px;
    border-radius: 10px;
    color: yellowgreen;
}

label {
    font-weight: 600;
    margin-right: 10px;
}

.group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    /* max-width: 190px; */
    justify-content: center;
}

.input {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    height: 45px;
    padding-left: 2.5rem;
    box-shadow: 0 0 0 1.5px #2b2c37, 0 0 25px -17px #000;
    border: 0;
    border-radius: 12px;
    background-color: rgb(0, 0, 0);
    outline: none;
    color: #bdbecb;
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: text;
    z-index: 0;
}

.input::placeholder {
    color: #bdbecb;
}

.input:hover {
    box-shadow: 0 0 0 2.5px #2f303d, 0px 0px 25px -15px #000;
}

.input:active {
    transform: scale(0.95);
}

.input:focus {
    box-shadow: 0 0 0 2.5px #2f303d;
}

.search-icon {
    position: absolute;
    left: 1rem;
    fill: #bdbecb;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    z-index: 1;
}

.helo:active{
    box-shadow: rgb(98, 0, 255);
}