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

/* ===== PAGE CENTER ===== */
.page {
    font-family: 'Kanit', 'IBM Plex Sans Thai', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
}

/* ===== BACKGROUND ===== */
.background {
    position: fixed;
    inset: 0;

    background-image: url('background1.jpg');
    background-size: cover;
    background-position: center;

    filter: blur(10px);
    z-index: -1;
}

/* ===== LOGIN ===== */
.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-card {
    background: rgba(255,255,255,0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* header */
.login-header {
    background: linear-gradient(135deg,#344e41,#3a5a40);
    color: white;
    padding: 50px 30px;
    text-align: center;
}

/* body */
.login-body {
    padding: 45px 30px;
}

/* button */
.discord-login-btn {
    display: flex;
    width: 100%;
    padding: 16px;

    justify-content: center;
    align-items: center;
    gap: 12px;

    background: linear-gradient(135deg,#3a5a40,#588157);
    color: white;

    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* footer */
.login-footer {
    padding: 25px;
    text-align: center;
    background: #f5f5f5;
}
