:root {
    --primary-color: 111, 76, 255;
    --text-color: 256, 256, 256;
}

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

.btn {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    padding: 12px 32px;
    margin: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary {
    background-color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    color: rgb(var(--text-color));
}

.btn-glow:hover {
    box-shadow: rgba(var(--primary-color), 0.5) 0px 0px 20px 0px;
}

.center-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signin-card { width: 100%; max-width: 400px; }
.text-center { text-align: center; }
.card { padding: 1rem; }
.lead { color: #444; }
