/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Background */
body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body {
    background: url('bg.svg') no-repeat center center fixed;
    background-size: cover;
}


/* Main Container */
.login-container {
    background: #2c2f33;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 30px;
    color: #fff;
    width: 800px;
    height: 400px;
    justify-content: space-between;
}

/* Left Login Box */
.login-box {
    width: 60%;
}

.login-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #b9bbbe;
    margin-bottom: 20px;
}

form label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #b9bbbe;
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #212327;
    border: none;
    border-radius: 4px;
    color: #fff;
}

.forgot {
    display: block;
    color: #00aff4;
    font-size: 12px;
    margin-bottom: 15px;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    background: #5865f2;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.register {
    font-size: 14px;
    margin-top: 15px;
}

.register a {
    color: #00aff4;
    text-decoration: none;
}

/* QR Box */
.qr-box {
    width: 35%;
    text-align: center;
}

.qr-image {
    width: 170px;
    margin-bottom: 10px;
}

.qr-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.qr-box p {
    font-size: 12px;
    color: #b9bbbe;
    margin-bottom: 10px;
}

.passkey {
    color: #00aff4;
    font-size: 12px;
    text-decoration: none;
}


.logo-header {
    position: absolute;
    top: 20px;
    left: 20px;
}

.discord-logo {
    width: 120px; /* méret állítható */
    height: auto;
}