/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Background Blur Effect */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./background.webp'); /* Path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px); /* Adjust the blur intensity */
    z-index: -1;
}

/* Login Container Styling */
.login-container {
    background: linear-gradient(145deg, #1a1a1a, #333);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: #e0e0e0;
}

/* Heading Styling */
.login-container h2 {
    font-size: 2rem;
    color: #fda200;
    margin-bottom: 20px;
}

/* Login Button Styling */
.login-button {
    display: inline-block;
    padding: 15px 30px;
    color: #ffffff;
    background-color: #fda200;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.login-button:hover {
    background-color: #e69300;
    transform: scale(1.05);
}

/* Additional Link Styling */
.login-container p {
    color: #888888;
    margin-top: 15px;
}

.login-container a.secondary-link {
    color: #4d4d4d;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-container a.secondary-link:hover {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        padding: 20px;
    }

    .login-container h2 {
        font-size: 1.5rem;
    }

    .login-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
