/* Full-screen black background */
body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Auth Card */
.card {
    position: relative;
    width: 250px;
    height: 300px;
    border-radius: 20px;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 20px 20px 60px #1a8e96, -20px -20px 60px #6065d3;
    padding: 0px;
}

/* Ensure content inside the card is on top */
.card h2,
.card button,
.card input {
    position: relative;
    z-index: 3; /* Higher than .bg and .blob */
}
.card input {
    margin-left: 21%;
    width: 50%;
    border: dotted;
    border-color: white;
    background-color: #0b2237;
}

.card h2 {
    color: skyblue;
}

/* Background & animation */
.bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 240px;
    height: 290px;
    background: #000000;
    backdrop-filter: blur(24px);
    border-radius: 15px;
    outline: 2px solid #215d61;
    z-index: 2;
}

.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 250px;
    border-radius: 100%;
    background-color: #840296;
    opacity: 1;
    filter: blur(50px);
    animation: blob-bounce 3s infinite ease;
}

/* Animation for the blob */
@keyframes blob-bounce {
    0% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
    25% { transform: translate(-100%, -100%) translate3d(100%, 0, 0); }
    50% { transform: translate(-100%, -100%) translate3d(100%, 100%, 0); }
    75% { transform: translate(-100%, -100%) translate3d(0, 100%, 0); }
    100% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
}


/* Buttons */
.btn {
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 50%;
    background-color: #007bff;
    color: white;
    margin-left: 25%;
    margin-top: 8px;
}

.btn-enter {
    background-color: #007bff;
    color: white;
}

.btn-register {
    background-color: #6c757d;
    color: white;
    margin-right: 10px;
}

/* Input Box */
.input-box {
    width: 80%;
    padding: 8px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

/* Hide sections dynamically */
.hidden {
    display: none;
}


/* Refresh button */
.refresh-btn {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgb(41 101 112 / 100%);
}
.refresh-btn:hover {
    background-color: #0b2237;
}
.btn-enter:hover, .btn-register:hover, .btn:hover {
    background-color: black;
    opacity: 70%;
}
.card input {
    font-family: Arial, sans-serif; /* Change this to any font you prefer */
    font-size: 16px; /* Adjust text size */
    color: cyan; /* Change text color */
    font-weight: bold; /* Optional: Makes text bold */
}
