@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');

* {
    font-family: 'Signika Negative', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0e0e0e;
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.login-btn {
    background-color: #5865F2;
    color: white;
    font-size: 1.5em;
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    transition: background 0.3s;
}

.login-btn:hover {
    background-color: #4852c7;
}

.login-btn .icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}