body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f7;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    z-index: 0;
    animation: moveBackground 5s linear infinite;
}
button.secondary-button {
    background-color: #f5f5f7 !important;
    color: #007aff !important;
    margin-top: 10px !important;
    font-size: 14px !important;
}
.secondary-button:hover {
    background-color: #e5e5e7 !important;
}
.login-container {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.login-container:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-container button:hover {
    background-color: #0056b3;
}

i.fas.fa-user-md {
    margin-bottom: 4px;
}

.error-message {
    color: red;
    margin-top: 10px;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}