@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');

* {
    font-family: "Gotu", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(images/bg.jpg);
    background-size: cover;
}

.container {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    background-color: #2c2c2c; /* Dark transparent background */
    padding: 40px 30px;
    box-shadow: 0 0 10px #fff;
    backdrop-filter: blur(10px); /* This adds the blur */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.container h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 36px;
    text-decoration: underline;
    text-align: center;
    color: #ffffff;
}

.inputBox {
    position: relative;
    margin-bottom: 24px;
}

.inputBox span {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: #333333;
    font-size: 20px;
    cursor: pointer;
}

.passBox {
    width: 100%;
    height: 40px;
    padding: 8px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    background-color: #f2f2f2;
    color: #333333;
    outline: none;
    cursor: not-allowed;
}

#inputSlider {
    cursor: pointer;
}

input[type="range"] {
    width: 100%;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px;
    column-gap: 1rem;
}

.row p {
    font-weight: 700;
}

input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.getBtn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #0236a8;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease-in-out;
    box-shadow: 0 0 5px #a89702;
}

.getBtn:hover {
    background-color: #00246d;
}

#sliderValue {
    margin-right: 7px;
}

@media (max-width: 600px) {
    .container {
        margin: 1.5rem;
    }
}