:root {
    --primary: #1975ad;
}

body {
    font-family: monospace;
    background-color: #000000;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('https://files.catbox.moe/36ck9a.png');
    background-size: cover;
    background-attachment: fixed;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

.container {
    max-width: 100%;
    width: 100%;
    background: #121212;
    padding: 20px;
    border: 4px solid #161616;
    border-radius: 6px;
    transition: .7s;
}

.container:hover {
    border-color: var(--primary);
    transition: .7s;
}

.auth-container {
    max-width: 100%;
    width: 100%;
    background: #121212;
    padding: 20px;
    border: 4px solid #161616;
    border-radius: 6px;
    transition: .7s;
}

.auth-container:hover {
    border-color: var(--primary);
    transition: .7s;
}

h2 {
    color: #1975ad;
}

input, button {
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #3c3c3c4d;
    color: #ccc;
    max-width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

input::placeholder {
    color: #888;
}

button {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0d4567;
}

table {
    border-collapse: separate;
    border-spacing: 10px;
    width: 100%;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #1a1a1a;
    color: #ccc;
}

td {
    background-color: #2c2c2c;
}

td.otp-code {
    color: white;
    font-weight: bold;
}

.logout{
    position: absolute;
    top: 1px;
    right: 10px;
}

@media (max-width: 768px) {
    .container-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .container, .auth-container {
        max-width: 100%;
    }

    h2 {
        font-size: 1.5em;
    }
}
