        body {
            font-family: 'Inter', sans-serif;
            background-image: url('./images/background.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }
        .card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
            width: 100%;
            max-width: 550px;
            text-align: center;
        }
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
        }
        .logo-image {
            height: 4rem;
            max-width: auto;
            margin-bottom: 10px;
        }
        .welcome-text {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }
        .info-text {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
            margin-top: 20px; 
        }
        .info-text a {
            color: #007bff;
            text-decoration: none;
            font-weight: 600;
        }
        .info-text a:hover {
            text-decoration: underline;
        }