body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6, #60A5FA, #1E40AF);
    background-size: 400% 400%;
    animation: flowingBackground 20s infinite linear;
}

@keyframes flowingBackground {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.login-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
    width: 400px;
}

.logo {
    width: 120px;
    margin-bottom: 1.5rem;
}

.login-form h2 {
    margin-bottom: 1.5rem;
    color: #1E3A8A;
    font-size: 24px;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #3B82F6;
    border-radius: 8px;
    transition: background-color 1s ease, border-color 1s ease;
    text-align: center;
    font-size: 16px;
}

.input-group input:focus {
    border-color: #1E3A8A;
    background-color: #dbeafe;
    outline: none;
}

.login-btn {
    background: #3B82F6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 1s;
    font-size: 16px;
}

.login-btn:hover {
    background: #1E3A8A;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.version-text {
    margin-top: 1rem;
    font-size: 8px;
    color: gray; /* Change color to gray */
    text-align: center; /* Ensure text is centered */
}

