/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Center the content on the page */
.t9body {
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100vh;
    background-color: #f4f4f4;
    background-size: contain;
    background-repeat: round;
}

/* Translucent div with rounded corners */
.translucent-card {
    background: #171E26;  /* Translucent black background */
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    margin-bottom: 8vh;
}

/* Input group for text fields */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

/* Label styling */
label {
    font-size: 1em;
    color: #fff;
    display: block;
    margin-bottom: 4px;
    margin-left: 4px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Text field styling */
input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 16px;
    border: 1px solid #ddd;
    background-color: rgb(255, 255, 255);
    color:black;
}

/* Button styling */
button {
    background-color: #1e1164;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}