@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.container {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background: url(./clcl\ back\ \(Compressed\).png);
    background-position: center;
    background-size: contain;
    background-repeat: repeat;   /* we can give no repeat but i have to resize image for that other wise repeat looks way cooler */
}

.in-container {
    position: relative;
    height: 348px;
    border: 1px solid #76696992;
    border-radius: 20px;
    width: 350px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

input {
    padding: 0px 10px;
    height: 40px;
    width: 100%;
    margin: 0px 5px;
    border: 0.5px solid #23232157;
    border-radius: 10px;
    outline: none;
    margin: 10px 0;
    display: block;
    background: transparent !important;
    color: black;
}

::placeholder {
    color: black;
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#subAge {
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: 0.3s linear;
}

#subAge:hover {
    color: white;
}

.in-container .smallopt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: 91%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    font-weight: 600;
}

h2 {
    color: #232321c2;
}

hr {
    margin-top: 10px;
}