.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #e5e7eb;
}

.login-form input[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.login-form input[type="submit"] {
    font-weight: 600;
}

.login-note {
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: center;
    margin-top: 6px;
}

.divider {
    margin: 24px 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #334155,
        transparent
    );
}

.epic-login-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    background: #facc15;
    color: #020617;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.epic-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.25);
}
