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

body {
    font-family: 'Inter', sans-serif;

    background: #1e1f22;

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

    height: 100vh;

    padding-top: 120px;
}

.login-box {
    background: #2b2d31;

    width: 420px;

    padding: 40px;

    border-radius: 18px;

    text-align: center;

    color: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.login-box h1 {
    margin-bottom: 15px;

    font-size: 32px;

    font-weight: 700;
}

.login-box p {
    color: #b5bac1;

    line-height: 1.5;

    margin-bottom: 30px;
}

.discord-btn {
    width: 100%;

    background: #5865F2;

    border: none;

    padding: 14px;

    border-radius: 12px;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

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

    transition: 0.2s ease;
}

.discord-btn img {
    width: 24px;
    height: 24px;
}

.discord-btn:hover {
    background: #4752c4;

    transform: translateY(-2px);
}