html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #FAFAFA, #FFFFFF);
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.login-wrapper {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    padding: 40px;
    gap: 50px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    width: 90%;
    z-index: 1;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo img {
    height: 80px;
    opacity: 0.9;
}

.login-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #374151;
}

.login-form {
    width: 100%;
    max-width: 300px;
}

.login-form label {
    display: block;
    margin-top:8px;
    margin-bottom: 8px;
    color: #4A4A4A;
    font-size: 0.95rem;
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 1rem;
    color: #4A4A4A;
}

.login-button {
    width: 100%;
    margin-top: 20px;
}

.login-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
