body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
}

.btn-discord {
    background-color: #5865F2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
}

.btn-discord:hover {
    background-color: #4a53c5;
}

.btn-discord svg {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

h1, .lead {
    color: #e0e0e0;
}

.form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.form-check-input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #555;
    cursor: pointer;
    outline: none;
}

.form-check-input:checked {
    background-color: #5865F2;
    border: 1px solid #5865F2;
}

.form-check-label {
    cursor: pointer;
    transition: color 0.3s ease;
    color: #b0b0b0;
}

.form-check-input:checked + .form-check-label {
    color: #ffffff;
}