@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { /* font-family: Arial, Helvetica, sans-serif; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0F0066;
    color: #fff;
    background-image: linear-gradient(#3333335c 1px, transparent 0), linear-gradient(90deg, #3333335c 1px, transparent 0);
    background-size: 130px 130px;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-holder {
    background-color: #0F0066;
    border: 4px solid #FF0009;
    padding: 60px;
    width: 40%;
}

.heading-login, .text-login {
    font-family: Orbitron, sans-serif;
    letter-spacing: 4px;
}

.heading-login {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-login {
    font-size: 16px;
    margin-bottom: 50px;
}

.input-login-wrapper {
    display: flex;
    flex-direction: column;
}

.label-login {
    font-family: Orbitron, sans-serif;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.input-login {
    background-color: #060606; /* border-color: #86b7fe; */
    outline: 0; /* box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); */
    display: block;
    width: 100%;
    color: white;
    font-family: "Orbitron";
    padding: 12px 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    outline: none;
    border-top: 0;
    border-bottom: 1px solid white;
    border-left: 0;
    border-right: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* border-radius: 10px; */
    margin-bottom: 20px;
}

[type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

.btn-login {
    background-color: #FF0009;
    background-image: none;
    padding: 20px;
    width: 100%;
    border: none; /* border-radius: 10px; */
    color: #0F0066;
    font-size: 16px;
    font-weight: 700;
    font-family: Orbitron, sans-serif;
    letter-spacing: 3px;
}

@media (max-width: 1000px) {
    .login-form-holder {
        background-color: #0F0066;
        border: 4px solid #FF0009;
        padding: 60px;
        width: 70%;
    }
}


/* 1. The Overlay Container (Replace #filterModal with the ID/Class of your full-screen wrapper) */
#filterModal {
    /* Positioning and size to cover the whole viewport */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050; /* Ensure it's above other content */
    /* The Centering Magic */
    display: flex; /* Enables flexible layout */
    align-items: center; /* Centers vertically along the cross-axis */
    justify-content: center; /* Centers horizontally along the main-axis */
    /* Optional: Background dimming */
    background-color: rgba(0, 0, 0, 0.5);
}

/* 2. The Modal Content Box (Replace .filters-dialog with the class of your content box) */
.filters-dialog {
    /* Critical for modals with long content (like filter lists) */
    max-height: 90vh; /* Limits height to 90% of viewport */
    overflow-y: auto; /* Adds internal scrollbar if content exceeds max-height */
    /* Standard visual styling */
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}